标签:mkdir remote 工作 online rem 指定 app 指令 版本库
$ mkdir foldername
$ pwd
$ init
$ git add file
$ git commit -m "描述"
$ git log
$ git log --pretty=online
$ git reset --hard HEAD^
$ git reset --hard HEAD~100
$ cat file
$ git reflog
$ git status
git diff HEAD --file
$ git checkout --file
$ git reset HEAD file
$ rm file
$ git rm file
以github为例
$ git remote add origin git@github.com:你的用户名/项目名称
$ git push -u origin master
$ git push origin master
$ git clone git@github.com:用户名/项目名称
$ git checkout -b branchname
$ git branch
$ git branch -d branchname
$ git checkout branchname
$ git merge 指定分支
$ git merge --no-ff -m "描述" branchname
$ git stash
$ git stash list
$ git stash apply
$ git stash drop
$ git stash pop
$ git branch -D branchname
$ git remote -v
标签:mkdir remote 工作 online rem 指定 app 指令 版本库
原文地址:https://www.cnblogs.com/don1343/p/9017499.html