当前位置:   article > 正文

git的基本使用_git ls-remote -h

git ls-remote -h
git config --global user.name "ppli"
git config --global user.email "ppli@qau.edu.cn"
ssh-keygen -t rsa -C "ppli@qau.edu.cn"
ssh-add
添加的是“id_rsa.pub”里面的公钥
ssh git@github.com
The authenticity of host ‘github.com (207.97.227.239)’ can’t be established.
RSA key fingerprint is 16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added ‘github.com,207.97.227.239′ (RSA) to the list of known hosts.
ERROR: Hi tekkub! You’ve successfully authenticated, but GitHub does not provide shell access
Connection to github.com closed.


git clone gitlab




git init 产生的目录解释
error: src refspec master does not match any.


引起该错误的原因是,目录中没有文件,空目录是不能提交上去的 


error: insufficient permission for adding an object to repository database ./objects
服务端没有可写目录的权限


错误提示:fatal: remote origin already exists.


解决办法:$ git remote rm origin


错误提示:error: failed to push som refs to ........


解决办法:$ git pull origin master //先pull 下来 再push 上去


git init //在当前项目工程下履行这个号令相当于把当前项目git化,变身!


git add .//把当前目次下代码参加git的跟踪中,意思就是交给git经管,提交到本地库


git add <file> //把当前文件参加的git的跟踪中,交给git经管,提交到本地库


git commit -m “…”//相当于写点提交信息


git remote add origin git@github.com:ellocc/gittest.git //这个相当于指定本地库与github上的哪个项目相连


git push -u origin master //将本地库提交到github上。


git clone git@github.com:ellocc/gittest.git  //将github上的项目down下来。


git fetch origin //取得长途更新,这里可以看做是筹办要取了


git merge origin/master //把更新的内容归并到本地分支/master


下面是删除文件后的提交


git status //可以看到我们删除的哪些文件


git add .   //删除之后的文件提交git经管。


git rm a.c //删除文件


git rm -r gittest //删除目次


git reset --hard HEAD


git reset --hard HEAD     回滚到add之前的状态
git clean -f -d
git diff比较的是跟踪列表中的文件和文件系统中文件的差别


合并develop到master
git checkout master
$ git merge develop
git push origin master




1. 本地创建tags 


git tag -a v1.1 -m "new release"  
1.5 查看本地tags 
git tag -l  
2. push到服务器端 
git push --tags  
2.2.1 创建和删除远程branch 
git push origin head:newbranch_name   
git push origin head:feature/newbranch_name     
#删除远程分支,其它开发者要git branch -d -r 分支    
git push origin :newbranch_name    
2.3 删除本地tag 
git tag -d v1.1  
3. 删除服务器端远程tag 
git push origin :refs/tags/v1.1
4. 列出远程heads和tags
git ls-remote 
git ls-remote --heads origin  


4. 查看远程服务器端 


Java代码  收藏代码
$ git remote show origin  


引用
* remote origin 
  URL: git://github.com/rails/rails.git 
  Remote branch merged with 'git pull' while on branch master 
    master 
  Tracked remote branches 
    1-2-stable 2-0-stable 2-1-stable 2-2-stable 3-0-unstable master




Java代码  收藏代码
$ git ls-remote --heads origin 


1. git冲突解决
<1> git reset --hard
git pull
git commit -a
<2> git stash
git pull
git stash pop
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小惠珠哦/article/detail/867727
推荐阅读
相关标签
  

闽ICP备14008679号