Alberto López 😎
Frontend Developer @
@earthlandto
I think i can fly
Help you track changes you make in your code over time. As you edit to your code, you tell the version control system to take a snapshot of your files. The version control system saves that snapshot permanently.
- Visual code documentation
(with oh-my-zsh)
Flow level #0:
auto-love
git init
git add + git status + git commit
git init
git commit -m "add greetings"
git commit -m "add new file"
git log
git checkout file_name
git reset
Flow level #1:
we love branches
git checkout -b new_branch
git checkout -b new_branch
git merge
Warning: Conflicts!
git diff branch_name
Flow level #2:
remote love
git clone https://repo-url
git fetch
git pull
git push -u origin branch_name
git push
the end