Git 常用命令备忘
clone 参数:
克隆指定的库到指定目录
git clone xxxxx.git 【目录名称】
显示所有的分支
git branch -a
获取指定的分支并且切换到该分支上
例如 git 库中除了 master 之外还有一个叫 arcade 分支,执行以下命令:
git checkout -t origin/arcade
然后您执行一次 git branch 就会发现,当前项目的分支已经切换到 arcade 分支上了!
Cygwin 处理 commit 的内容
# Please enter a commit message to explain why this merge is necessary,
# especially if it merges an updated upstream into a topic branch.
#
# Lines starting with '#' will be ignored, and an empty message aborts
# the commit.
如下图:
1. 如果需要停止 commit 内容的输入,则执行如下步骤:
1.1. 按下 “Esc” 键
1.2. 输入“:wq”
2. 如果需要插入内容,则执行以下步骤:
2.1. 按下 “i” 键进入输入模式。
2.2. 完成之后执行 1.1 和 1.2 两步。
使新修改的 .gitignore 规则生效
git rm -r --cached .
git add .
重新提交
git commit -m "fixed the .gitignore. "
编程之美。