赞
踩
Git
来重新命名文件夹,也可以通过Browser
添加到别的已有文件夹git pull
行为git version
git init
git config user.name 名称
git config user.email 邮箱
git config --global user.name 名称
git config --global user.email 邮箱
git status
git add [file name]
git commit -m "commit message" [file name]
git log
git log
查看的几种方式
git log --pretty=oneline
git log --pretty=onlie
git log --oneline
git reflog
git reset
<commit>
,但不会更改工作目录的内容或提交历史git reset --soft <commit>
git reset --mixed <commit>
<commit>
,所有未提交的都将回永久丢失git reset --hard <commit>
git reset --hard HEAD^^
git reset --hard HEAD~n
git reset --hard [指针位置]
git diff [文件名]
git diff [本地库中的历史版本][文件名]
在版本控制过程中,使用多条线同时推进多个任务
master
bot_fix
feature_blue
master
分支feature_game
分支的好处
git branch [分支名称]
git branch -v
git checkout [分支名称]
git checkout [分支名称]
merge
命令git merge [分支名称]
ssh-keygen -t rsa -b 4096 -C "GitHub注册的邮箱地址"
SSH and GPG key
选项,添加新的SSH密钥git remote -v
git remote add [别名] [远程地址]
git push [别名] [分支名]
git clone [远程地址]
pull
git fetch [远程库地址别名] [远程分支名]
git merge [远程库地址别名/远程分支名]
git pull [远程库地址别名] [远程分支名]
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。