Git的使用

我们新建一个项目后,会新建文件夹,进入文件夹后运行命令

git init

初始化一个代码仓库
手动(自动)在文件夹下创建 .gitignore 文件,文件格式如下

# Ignore bundler config
/.bundle

# Ignore the default SQLite database.
/db/*.sqlite3

运行命令

git add .

会自动添加在 .gitignore 中列出的文件

在github新建一个和我们的项目根目录名相同的仓库
将本地库和远程库相关联

git remote add origin [email protected]:/.git

将本地库内容推送的远程库

git push -u origin master

进阶:
创建新分支

git checkout -b 'xuji'

列出所有分支

git brach

合并主分支

git checkout master   --> 切换到主分支
git merge xuji        -->将xuji分支合并到主分支

你可能感兴趣的:(Git的使用)