ZulfadlyAshBurn Posted April 28, 2013 Share Posted April 28, 2013 Hi there, I'm not sure of which forum to post this at so I shall just post it here.I'm currently developing on a php project and there are 3 different programmers for it. All the programmers would be working on one particular file. Is there any way I can track bugs and changes after they're done their edits and submit for public push? Hope to hear soon. Quote Link to comment Share on other sites More sharing options...
Jessica Posted April 28, 2013 Share Posted April 28, 2013 Version control. I like git. Other ones are cvs and svn. Quote Link to comment Share on other sites More sharing options...
ZulfadlyAshBurn Posted April 28, 2013 Author Share Posted April 28, 2013 What's a simpler version of git? Quote Link to comment Share on other sites More sharing options...
Jessica Posted April 28, 2013 Share Posted April 28, 2013 One of the other two I listed. Although really, git is worth it. I was really hesitant to start using it at first, the job I was at used all 3 and after a while I would find when I switched back to a project using cvs or svn I was annoyed and just wanted to convert them all to git. Quote Link to comment Share on other sites More sharing options...
ignace Posted April 28, 2013 Share Posted April 28, 2013 (edited) What's a simpler version of git? Simpler then git? Is that possible?! 1. git init 2. make some code changes 3. git commit -m "My awesome commit message" 4. make more code changes 5. git commit -m "More Changes!!" 6. git branch myawesomebranchedfeature 7. make even more code changes 8. git commit -m "OH MY GOD !! THIS IS AWESOME !!" 9. git checkout master 10. git merge myawesomebranchedfeature 11. git branch -d myawesomebranchedfeature Edited April 28, 2013 by ignace Quote Link to comment Share on other sites More sharing options...
wright67uk Posted April 28, 2013 Share Posted April 28, 2013 do you like git? Quote Link to comment Share on other sites More sharing options...
trq Posted April 29, 2013 Share Posted April 29, 2013 do you like git? Git is awesome! I hate it when I have to use any other VCS. Quote Link to comment Share on other sites More sharing options...
Adam Posted April 29, 2013 Share Posted April 29, 2013 1. git init 2. make some code changes 3. git commit -m "My awesome commit message" You forgot to add your changes! Quote Link to comment Share on other sites More sharing options...
ignace Posted April 29, 2013 Share Posted April 29, 2013 No, my files love git so much they add themselves Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.