[关闭]
@zhongjianxin 2017-07-26T17:00:44.000000Z 字数 484 阅读 968

Git Training Practice

Trainning


常用Git 清单

Practice:
1. 在github上创建一个repo(gittest).
2. 创建一个本地仓库,并将本地仓库推向远端repo. (git init/ touch readme.md/git add ./git commit -m "initiate the project"/ git add remote origin [url]] /git push -u origin
3. 在远程repo(gittest)上创建一个branch(名字为branch1)
4. 在本地拉取新创建的branch1
5. 在命令行查看本地和远程的所有branch
6. 在本地创建一个branch(branch2)
7. 将branch2push到远端,并创建远端branch2
8. 切换到branch1.
9. 创建branch1.txt并push到远端repo
10. 去github上提交pull request 将branch1的内容merge回master
11.切换到master, 用git log来查看master的日志。
12. 在本地删除本地branch2和远端branch2

添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注