git 初始化新的文件夹
1. tar xvf new_project.tar.gz
2. cd new_project
3. git config --global user.email “user.name@...."
4. git config --global user.name "user.name"
5. git init
6. git add .
7. git commit -m "first commit"
8.git branch
注:显示出了主分支,接下来就可以建立新的分支了
9. git checkout -n new_branch