Skip to content

Instantly share code, notes, and snippets.

@Artnoc1
Last active April 30, 2021 18:05
Show Gist options
  • Save Artnoc1/bbae1bae036e9714cd108cdf92168c98 to your computer and use it in GitHub Desktop.
Save Artnoc1/bbae1bae036e9714cd108cdf92168c98 to your computer and use it in GitHub Desktop.
Gist, созданный на Android

Create the repository on Github


  • Initialize local repo
git init
  • Add files (all files, or files to be committed)
git add.

  • Commit the changes
git commit -m "message"

  • Add the repo
git remote add origin *remote repository url*

  • Push to Github
git push -u origin master

  • Pull changes from Github
git pull remote_name branch_name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment