TakWolf 's Blog

Anima Game Code Repeat

TakWolf's avatar TakWolf

Git 的一般化使用流程

对于Git,平时我愿意使用SourceTree,命令使用的比较少。
这里对Git的一般化使用流程做一个总结,也作为一个快速查找手册。

使用Git前,需要进行全局配置。该配置对整个系统有效,只需配置一次。以本人的情况为例:

1
2
3
4
$ git config --global user.name "TakWolf"
$ git config --global user.email takwolf@foxmail.com
$ git config --global push.default matching
$ git config --global alias.co checkout

我们假设已经创建了一个应用,通过cd命令进入目录:

1
$ cd workspace/hello_world_app

首先初始化git:

1
$ git init

将所有文件放到仓库暂存区中:

1
$ git add -A

提交一个commit:

1
$ git commit -m "Initialize repository"

以上两个命令可以合并为:

1
$ git commit -a -m "commit all"

或者

1
$ git commit -am "commit all"

配置远端地址:

1
$ git remote add origin https://github.com/takwolf/hello-world-app.git

推送到远端master分支:

1
$ git push origin master

命令的一些说明

创建一个分支:

1
$ git branch <新分支名字>

切换到新分支:

1
$ git checkout <新分支名字>

加入一个新的远程端:

1
$ git remote add <远程端名字> <地址>

推送分支:

1
$ git push origin <新分支名字>

搞到最后,还是觉得 GUI 方便,回 GUI 去了~

This blog is under a CC BY-NC-SA 3.0 Unported License
本文链接: http://blog.takwolf.com/2014/11/26/git-note-normal-step-of-use-git/

没有能用的评论系统我也很无奈啊!

有问题请去这里讨论吧:

https://github.com/TakWolf/blog.takwolf.com/issues