You are on page 1of 1

git

git
git
git
git

init
remote add origin https://github.com/wadeshow/prego.git
add .
commit -m "Initial Commit"
push origin master

DELETE FILES
-------------git rm {filename}
git commit -m "Deleted {filename}"
git push origin master
DELETE FOLDER
-------------git rm -r --cached FolderName
git commit -m "Removed folder from repository"
git push origin master
DELETE MULTIPLE FILES
--------------------git add -u
git commit -m "Deleted files manually"
git push origin master

You might also like