Slide 34
Slide 34 text
Adding the new features
Now lets add the new features to our markdown file using
the created features branch. Lets first go the features
branch using the cmd git checkout features . Now change
the markdown file(add any new syntax e.g a table). I have
added a blockquote.
Let us also create a new file. I’m creating a new javascript
file. You can create any file(Use the touch command). After
doing all that, let us add the changes to git,commit them
and push the changes.
NOTE: When pushing your changes do not forget to set an
upstream. git push alone won’t work.
Since we are working on a different branch, the remote and
branch aren’t set. We will use the same remote since we are
working on the same repo on github but just on a different
branch.