码迷,mamicode.com
首页 > 其他好文 > 详细

Git基本操作和使用

时间:2018-06-19 13:50:33      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:git push   git init   ast   自动   TE   注意   ase   one   style   

基本命令:

git config
git init
git clone
git remote
git fetch
git commit
git rebase
git push

本地基本操作:

git clone url    导入到本地

git remote -v   查看源地址

git status   查看改动文件

git commit -am ‘备注’    提交源码

git push origin master:master  确认提交

git fetch 更新

git rebase origin/master 合拼

根据本地代码创建一个项目:

git init  会自动创建一个.git文件

使用 git status 查看变动

添加:  git add 

            git statuss 查看变动

            git commit -am ‘备注‘

这个时候他会提醒 我们找不到源地址:

添加源:

           git remote add origin url(这个url是你提交平台创建的) 

然后在创建的提交平台上有什么文件是我们没有的,我们先更新:

           git fetch

再合拼:

           git rebase origin/master

然后就可以提交了:

           git push origin master:master 提交

(注意,要先更新、合拼!!!)         

 

Git基本操作和使用

标签:git push   git init   ast   自动   TE   注意   ase   one   style   

原文地址:https://www.cnblogs.com/laijinquan/p/9197869.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!