当前位置:   article > 正文

idea git 常使用命令_idea git命令行

idea git命令行

1、(先进入项目文件夹)通过命令 git init 把这个目录变成git可以管理的仓库

 

git init

2.状态查询命令

git status
  1. On branch develop
  2. Your branch is up to date with 'origin/develop'.
  3. Changes to be committed:
  4. (use "git reset HEAD <file>..." to unstage)
  5. new file: zhz-mapper/pom.xml
  6. new file: zhz-service/pom.xml
  7. new file: zhz-service/zhz-service.iml
  8. Changes not staged for commit:
  9. (use "git add <file>..." to update what will be committed)
  10. (use "git checkout -- <file>..." to discard changes in working directory)
  11. modified: .idea/compiler.xml
  12. modified: pom.xml
  13. modified: zhz-mapper/pom.xml
  14. modified: zhz-model/pom.xml
  15. modified: zhz-model/zhz-model.iml
  16. modified: zhz-service/pom.xml
  17. modified: zhz-service/zhz-service.iml

3、把文件添加到版本库中,使用命令 git add .添加到暂存区里面去,不要忘记后面的小数点“.”,意为添加文件夹下的所有文件

git add .

4、用命令 git commit告诉Git,把文件提交到仓库。引号内为提交说明

  1. git commit -m '添加model、mapper、service'

5、关联到远程库

git remote add origin 你的远程库地址

如:

git remote add origin ssh://kangxg@192.168.0.99:29418/zhaizhu/server.git

6、获取远程库与本地同步合并(如果远程库不为空必须做这一步,否则后面的提交会失败)

git pull --rebase origin develop

Password authentication
Password: 
From ssh://192.168.0.99:29418/zhaizhu/server
 * branch            develop    -> FETCH_HEAD
Current branch develop is up to date.
 

7、把本地库的内容推送到远程,使用 git push命令,实际上是把当前分支master推送到远程。执行此命令后会要求输入用户名、密码,验证通过后即开始上传。

git push -u origin develop

 

 

 

命令大全

https://www.jianshu.com/p/46ffff059092
 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/654618
推荐阅读
相关标签
  

闽ICP备14008679号