Netbeans + GIT + SVN in a project? -
could used svn , git repository @ same time in 1 netbeans project? testing it, no solutions found.
yes, svn , git should able live side side. you'll need integrate git into svn though.
first, edit svn-ignore ignore .git , .gitignore files. add , commit. then, can initialize git repo , add full remote project:
git init git remote add -f origin https://github.com/yourusername/your-project.git
if run git status now, won't show correct git tracking. :
git checkout -f master
run again git status, see lot of .svn files. need edit .gitignore ignore those.
git integrated svn , happily ignore each other!
Comments
Post a Comment