Git
yang_kunlun
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Converting SVN repositories to GIT
Clone a svn base on localIf we use git,at first create svn base,so we can check log information。git-svn clone -s svn+ssh:// -s --- svn base have standard(trunk、branches、tags),if your svn b...2009-05-14 11:05:24 · 114 阅读 · 0 评论 -
Use git on netbeans and commit to redmine
¶1.Install nbgit on netbeans2.Show differencegit diffShow statusgit statusUpdate code with information of “refs # short information"git commit3.On local directory,push c...2009-05-14 11:06:09 · 107 阅读 · 0 评论 -
Fork the Hydroplan SVN and create a hydroplan-chin
1。Create Git version from SVN on local directory.git svn clone svn+ssh://yangkunlun@activeext.com/home/svn/repositories/1hydroplan2。Create new git base on server。 git --bare init --shared...2009-05-14 11:07:00 · 121 阅读 · 0 评论 -
Git project with ignore some dir and files
1.git init2.If you want to ignore some folders and files,write them into .gitignorevim .gitignorefor example,we use this gitignore file as defaultnbprojectlog/*.logtmp/**/*...2009-05-14 11:07:22 · 114 阅读 · 0 评论 -
Git ignore files in the rails projects
Go to you rails app folder and create a file named .gitignorevim .gitignoreupdate the file:nbprojectlog/*.logtmp/**/*config/database.ymldb/schema.rbdb/*.sqlite3public/javascrip...2009-05-14 11:08:01 · 116 阅读 · 0 评论 -
Git pull from and push to server branch
1.push to server branch.git branch harrygit checkout harry--modify somethinggit push origin harry2.pull from server branchgit clone git@10.0.1.1:projectname fetch branch ...2009-05-14 11:08:42 · 172 阅读 · 0 评论 -
Git merge失败后处理
git fetchgit rebase originthen git push2009-06-01 10:29:26 · 628 阅读 · 0 评论
分享