filmov
tv
How to make a pull request!
Показать описание
In this video we go over a basic fundamental, how to make a pull request. Making a pull request is required to do any development and everyone in tech should be aware of the process and how to collaborate using git/version control.
from master....
git add .
git commit -m 'my first commit'
git push origin master
from a branch...
git checkout -b NEW_BRANCH
git add .
git commit -m 'my first commit'
git push origin master
from master....
git add .
git commit -m 'my first commit'
git push origin master
from a branch...
git checkout -b NEW_BRANCH
git add .
git commit -m 'my first commit'
git push origin master