git add.
git commit -m "commit info"
git push
GH_TOKEN=token electron-builder build -w -p onTagOrDraft
Last active
January 10, 2019 18:34
-
-
Save wwex/a1ebdf4d36b37b67e875c33a762cb8e2 to your computer and use it in GitHub Desktop.
[GIT] #git
- Checkout on branche which you would like to update.
$git checkout master - Refresh by using fetch
$git fetch - Pulling master to be in updated version
$git pull origin master - Merge master with branch wi want to put on master place
$git merge branch_name - Push new master branch to remote service
$git push origin master
git init
cat .gitignore
git add .
git remote add origin https://github.com/wwex/gitname.git
git commit -m "Init commit"
git push -u origin master
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment