美文网首页git studyiOS
学习git过程mark的mac命令

学习git过程mark的mac命令

作者: 我是李戴表 | 来源:发表于2016-05-11 11:29 被阅读181次

    ls 显示当前目录列表

    ls -ah 显示隐藏目录

    rm 删除文件

    学习中需要使用隐藏文件夹的功能,这时候去百度,一大堆10.11.之前的方法,不管是界面管理器方式设置还是命令发现其实都不起作用啦。不过百度大大虽无节操,也是百能的。10.11之后的系统是要多使用一个命令才行。如下:

    显示隐藏文件:

    终端输入:

    defaults write com.apple.finder AppleShowAllFiles -bool true

    然后再输入一句:

    killall Finder

    ok👌,搞定。

    如果想继续隐藏,如下:

    defaults write com.apple.finder AppleShowAllFiles -bool false

    继续输入:

    killall Finder

    隐藏搞定。

    *******

    mac下卸载jdk版本

    命令行运行:sudo rm -rf /Library/Java/JavaVirtualMachines/jdk1.8.0_92.jdk

    其中jdk1.8.0_92.jdk是我的jdk版本;要想查看jdk版本可用:

    ls /Library/Java/JavaVirtualMachines/

    *******

    下面是纪录一下初次创建远程库,github提示多创建新库或推送本地库的命令,备忘一下

    We recommend every repository include aREADME,LICENSE, and.gitignore.

    …or create a new repository on the command line

    echo "# mvp_architecture" >> README.md

    git initgit add README.md

    git commit -m "first commit"

    git remote add originhttps://github.com/github账号名/git仓库名.git

    git push -u origin master

    …or push an existing repository from the command line

    git remote add originhttps://github.com/github账号名/git仓库名.git

    git push -u origin master

    由于远程库是空的,我们第一次推送master分支时,加上了-u参数.

    从现在起,只要本地作了提交,就可以通过命令:

    git push origin master

    把本地master分支的最新修改推送至GitHub

    ****

    Git鼓励大量使用分支:

    查看分支:git branch

    创建分支:git branch

    切换分支:git checkout

    创建+切换分支:git checkout -b

    合并某分支到当前分支:git merge

    删除分支:git branch -d

    相关文章

      网友评论

        本文标题:学习git过程mark的mac命令

        本文链接:https://www.haomeiwen.com/subject/izxurttx.html