Steps to create a new repo with an existing app
Create a new Repository aside from the one that already exists for a project.
Go into the file you want to push up.Â
ex: CourtPOv1
Get the git name and push up to it in the terminal. I substitute tasha for origin. That can be anything you want it to be.
$ git remote add tasha [email protected]:Tasha25/CourtPOv1.git
Add material
$ git add .
Commit any info
$ git commit -am "Added Readme file"
Push up the branch you want to push while in it
$ git push tasha links
You can move into master and merge links
$git checkout master
$git merge links
$git add .
$git commit -m "Created a readme file"
Push up master to repo
$git push tasha master













