Skip to content

Instantly share code, notes, and snippets.

@ginos173
Last active April 2, 2019 20:37
Show Gist options
  • Save ginos173/b871c220b60ac2362c0276ef3a19acdd to your computer and use it in GitHub Desktop.
Save ginos173/b871c220b60ac2362c0276ef3a19acdd to your computer and use it in GitHub Desktop.
Git basics

Configuraciones

ver a que repositorio esta apuntando

git remote -v

Repo desde proyecto local

git remote add origin https://username@your.bitbucket.domain:7999/yourproject/repo.git 
git push -u origin master

cambiar remoto

git remote set-url origin https://github.com/USERNAME/REPOSITORY.git

Crear rama

git branch <feature_branch>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment