09-16-2017, 06:17 PM
I do it all from the command line. Merging isnt' too hard. Dealing with merge conflicts can be a little tricky. What's your git username, @Karsen?
For what you're doing it's easy enough to do in the command line.
cd into the folder that has the repo in it
git checkout -b karsen
then when you are done making your changes
git add .
git commit -m "your description"
git push origin karsen
For what you're doing it's easy enough to do in the command line.
cd into the folder that has the repo in it
git checkout -b karsen
then when you are done making your changes
git add .
git commit -m "your description"
git push origin karsen