Skip to content

Latest commit

 

History

174 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Basic instructions about how to submit updates

0. Configure git on your computer

git config --global user.name "Your name"
git config --global user.email "Your email"
git config --global core.editor vi
git config --global alias.st status
git config --global alias.co checkout
git config --global alias.br branch
git config --global alias.up rebase
git config --global alias.ci commit

1. Develop on your branch

(Here you can do whatever you want and updated the package as you wish)

git st # (check status)

git diff filename # (check difference line by line)

git pull # (download and update the repository)

git add filename/directory # (add file)

git add -p filename # (add file line by line)

git st # (check status)

git ci -m "commit message"

git push # this puts the commits on the web in your branch only (the master is unaffected)

2. Get a existing branch from the origin

git co filename (undo all change)

git co -p filename (undo all change line by line)

About

NCU thesis

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages