Skip to content
Permalink
main
Switch branches/tags

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?
Go to file
 
 
Cannot retrieve contributors at this time
# 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