linux中管理工具svn和git怎么用

70次阅读
没有评论

共计 911 个字符,预计需要花费 3 分钟才能阅读完成。

这篇文章将为大家详细讲解有关 linux 中管理工具 svn 和 git 怎么用,丸趣 TV 小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。

1、svn 
 checkout
svn checkout http://120.132.69.218/svn/bicaijia-appweb-service/trunk/bicaijia-appweb_2/ ./webserver
svn log -l 2
 update
$ svn update .
 commit
$ svn commit -m pom.xml file modify
 delete
  $ svn delete pom.xml ;svn commit -m delete pom.xml
 copy branch

 merge
$ svn merge  http://120.132.69.218/svn/test/branches/webserver_v4.0.1_20170426
$svn commit -m Merge
 resolved
svn resolved -R 
 lock unlock
svn lock pom.xml -m lock
svn unlock –force pom.xml
 mkdir
$ svn mkdir -m Create dir http://120.132.69.218/svn/test/trunk/webserver/shy
 log
svn log -l -r –stop-on-copy
  回退
$ svn merge -r head:24 http://120.132.69.218/svn/test/trunk/webserver
$ svn commit
  文件忽略
2、git
 init
git init
 clone
git clone https://username:password@ip
 push
git push origin develop:develop
 pull
 remote
 commit
 rm
 branch
 checkout
 tag
 log
  回退
  文件忽略

关于“linux 中管理工具 svn 和 git 怎么用”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2023-08-25发表,共计911字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)