forked from andresrosso/proyectogrado-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Pancakes0/proyectogrado-docs
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
#identificarme con github git config --global user.name "arosso@xxx" git config --global user.email "andresrosso@gmail.com" git config --add http.proxy http://127.0.0.1:8080 git config --replace-all http.proxy http://127.0.0.1:8080 #tamano archivos a subir 500MB git config http.postBuffer 524288000 #generar llave ssh-keygen ->/home/arosso/.ssh/git.keys #se le da la llave a GITHUB -> cat git.keys #crear el repositorio local vacio mkdir proyectogrado-docs cd proyectogrado-docs git init #conectar el repositorio local con github git remote add origin git@github.com:andresrosso/proyectogrado-docs.git #traer todo el contenido de GITHUB git pull origin master #poner el contenido local en GITHUB touch README git status git add README git status git commit -m "el commit local" git status git push origin master git status #conectarse a un proyecto en el repo de GITHUB git clone git@github.com:andresrosso/proyectogrado-docs.git #ignore files -> create file named .gitignore #*.log #*.class #*.lck #tmp/ #bin/ #show differences git diff origin/master..HEAD --name-only #fetch downloads the latest from remote without trying to merge or rebase anything. git fetch --all #Then the git reset resets the master branch to what you just fetched. git reset --hard origin/master #Update ignoring local modifications git reset --hard HEAD git pull
About
Documentación Proyecto De Grado
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published
Languages
- R 100.0%