Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
245-Labs/README.md
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
31 lines (17 sloc)
380 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 245-Labs | |
Lab Materials for 245CT | |
## Subtrees | |
Adding Remote | |
``` | |
git remote add -f <name> <repouri> | |
``` | |
Adding Subreop | |
``` | |
git subtree add --prefix <directory> <remote> <branch> --squash | |
``` | |
Updating | |
``` | |
git fetch <remote> | |
git subtree pull --prefix <directory> <remote> <branch> --squash | |
``` | |
git subtree pull --prefix Week7_XSS/Challenges XSS_Trainer main --squash | |