Skip to content

Instantly share code, notes, and snippets.

@JoshuaTPierce
Last active July 1, 2018 02:37
Show Gist options
  • Save JoshuaTPierce/bd549f3172fe18cf37727e2d21edaa9b to your computer and use it in GitHub Desktop.
Save JoshuaTPierce/bd549f3172fe18cf37727e2d21edaa9b to your computer and use it in GitHub Desktop.
#Clone Repository
git clone <url>
#Check Repo Status
git status
#Create New Branch
git checkout -b <newBranch name>
#Navigate to Directory
cd <repo name>
mkdir <new folder>
nano <file name>
#Save nano file
#Start Q Build Process
qmake -project #builds project
qmake #makes make file
make
#Run Program
./<fileName>
#Stage
git add .
#Commit
git commit -m "comment"
#Push
git push --set-upstream origin helloWorld
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment