Bitbucket第一次代码仓库创建/提交/创建新分支/合并分支/忽略ignore

1. 首先要在bitbucket上创建一个项目,这个我没有权限创建,是找的管理员创建的。

Bitbucket第一次代码仓库创建/提交/创建新分支/合并分支/忽略ignore_第1张图片

管理员创建之后,这个项目给了我权限,我就可以创建我的代码仓库了。

2. 点击这个Projects下的具体项目名字,就会进入这样一个页面,

Bitbucket第一次代码仓库创建/提交/创建新分支/合并分支/忽略ignore_第2张图片

 创建完就可以看到仓库链接了: https://XXX.git

3.在你的本地配置一下用户名和邮箱,然后clone代码提交和push

Configure Git for the first time
> git config --global user.name "ZXX YXX"
> git config --global user.email "[email protected]"

Working with your repository
I just want to clone this repository
If you want to simply clone this empty repository then run this command in your terminal.

> git clone https://XXX.git

> cd XXX
> git add --all
> git commit -m "Initial Commit"
> git remote add origin https://XXX.git
> git push -u origin HEAD:master
My code is already tracked by Git

4.创建新的分支并提交

> git branch -a
> git checkout -b 'new-branch'
> git add .
> git commit -m 'new-branch'
> git push origin 'new-branch'

5.把master分支合到你的新分支上来

> git checkout master # 切换本地分支为master
> git pull  # 拉取master分支
> git checkout 'new-branch'  # 切换到自己的new-branch分支
> git merge master  # 合并master到自己的分支
> git push # 推送到远程分支

6.增加.ignore

> ls -a #看看项目地下有没有.ignore文件
.git doc other .vscode
> echo '.vscode/settings.json' > .gitignore  #没有的话,创建并加入settings.json
> git commit -m 'ignore'   #提交
> git push   #推送

你可能感兴趣的:(git)