Github
We created a Github to store our projects. SienaFPGA2017.
The following link provides a helpful tutorial for using Github directly:
https://guides.github.com/activities/hello-world/
***********************************************************************************
The following link provides a helpful tutorial for using the terminal to upload a project to Github:
https://www.howtoforge.com/tutorial/install-git-and-github-on-ubuntu-14.04/
Some of the basics:
gedit ---- Creates a file where you can copy and paste in something like a code or just write a brief description.
git add ---- Adds the created files into the index
git commit -m "some_message" ---- Commits changes made in the index
git remote add origin "copy https from newly made github repository" ---- connects the files to the github web address
git push origin master ---- Moves the files to githuhb
The following link provides a helpful tutorial for using Github directly:
https://guides.github.com/activities/hello-world/
***********************************************************************************
The following link provides a helpful tutorial for using the terminal to upload a project to Github:
https://www.howtoforge.com/tutorial/install-git-and-github-on-ubuntu-14.04/
Some of the basics:
gedit ---- Creates a file where you can copy and paste in something like a code or just write a brief description.
git add ---- Adds the created files into the index
git commit -m "some_message" ---- Commits changes made in the index
git remote add origin "copy https from newly made github repository" ---- connects the files to the github web address
git push origin master ---- Moves the files to githuhb
Comments
Post a Comment