BruzzeseAgustin/GitFollowUp
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
Instructions : git init git add . # Adds the file to your local repository and stages it for commit. To unstage a file, use 'git reset HEAD YOUR-FILE'. git commit -m "Add existing file" # Commits the tracked changes and prepares them to be pushed to a remote repository. To remove this commit and modify the file, use 'git reset --soft HEAD~1' and commit and add the file again. git push origin your-branch # Pushes the changes in your local repository up to the remote repository you specified as the origin echo "# GitFollowUp" >> README.md git init git add README.md git commit -m "first commit" git remote add origin https://github.com/BruzzeseAgustin/GitFollowUp.git git push -u origin master