Git常备命令


自省

git --help
git add --help

基本操作

git init
git add .
git add -e .
git delete test.txt
git commit -m 'fix sth.'

git status
git log
git reset
git diff
git checkout

远程操作

git clone https://github.com/stormhouse/pyStudy.git
git pull
git push -u origin master

查看 ...

more ...

win7x64下git安装配置

1. 安装

1.1 cygwin安装

cygwin下载
注意:添加make命令,在Select Packages一步,将Devel@Default改为Devel@Install

1.2 git for windows下载安装

下载

2. github配置

2.1 github.com上注册用户

用户名:stormhouse; 邮箱:stormhouse@yeah.net

2.2 初始配置

打开Git Bash,执行以下命令

git config --global user.name "stormhouse"
git config --global user.email stormhouse@yeah ...
more ...