
Code Support
Professional Web Development
Category: GIT


Start a new git project in bitbucket and make a local branch accessible remotely
create a new branch and sync it up
June 27, 2016
GIT

Solve merge conflicts in Git
Identify which files are in conflict (Git should tell you this). Open each file and examine the diffs; Git demarcates them. Hopefully it will be obvious which version of each block to keep. You may need to discuss it with fellow developers who committed the code. Once you’ve resolved the conflict in the files stage …
April 23, 2016
GIT

Git Branch Workflow
If you haven’t cloned down the repo yet start with going into the folder where you want it and clone the repo. create temporary develop branch and move into it do all your changes you want todo Then keep using these 3 steps while working: add,commit and push the branch up. To keep the development …
April 15, 2016
GIT