Remove folder from a git repository
Remove folder from a git repository
1 | git rm -r --cached folderpath
|
Explore git code snippets and tutorials
Remove folder from a git repository
1 | git rm -r --cached folderpath
|
Remove file from git repository
1 | git rm --cached filepath
|
git reset hard to master
1 2 | git fetch origin master
git reset --hard origin/master
|
git create a repository and a branch
1 2 | git init
git checkout -b new_branch
|