在你的开发版本库中进行开发然后推送变更到权威版本库

在你的开发版本库中创建 一个文件
[root@git git]# vim aaaa.txt
ewfewfe
ewrfewfr
sdfdsfsdf
ewfrew

把创建的文件提交到暂存区里面
[root@git git]# git add aaaa.txt

把暂存区里的文件进行提交

[root@git git]# git commit

推送变更

[root@git git]# git push origin master
Counting objects: 4, done.
Compressing objects: 100% (2/2), done.
Writing objects: 100% (3/3), 323 bytes, done.
Total 3 (delta 0), reused 0 (delta 0)
Unpacking objects: 100% (3/3), done.
To /tmp/Depot/new.git
5a1e2da..36b9b31 master -> master

origin 这个是我们自己在进行连接的时候定义的

测试查看推送

[root@git git]# cd /tmp/Depot/new.git/
[root@git new.git]# git show-branch
[master] aaaaaa

可以看到确实成功了!

你可能感兴趣的:(在你的开发版本库中进行开发然后推送变更到权威版本库)