Jump to content

PHP Code Control


ZulfadlyAshBurn

Recommended Posts

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. 

Link to comment
https://forums.phpfreaks.com/topic/277385-php-code-control/
Share on other sites

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.

Link to comment
https://forums.phpfreaks.com/topic/277385-php-code-control/#findComment-1426989
Share on other sites

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

Link to comment
https://forums.phpfreaks.com/topic/277385-php-code-control/#findComment-1426990
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.