Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Emma Lövgren #17

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 21 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,24 @@ Once you've spent a few hours playing with Copilot and your language of choice,

#### Links to Projects Solved using Copilot

-
-
-
- https://github.com/shyye/java-api-mvc-with-postgres-ai
- https://github.com/shyye/java-api-cinema-challenge-ai

---
Setup steps (personal notes):
1. Create a new repo, e.g. `original-name-ai`.
2. Clone the original repo and name it the same as the new repo.
```
git clone `<SSH TO REPO>` `<new repo name, e.g. original-name-ai>`
```
1. Open git bash terminal in the folder for the cloned repo.
Remove remote origin:
```
git remote remove origin
```
1. Add new origin / upstream to the newly created repo named some-original-name-ai:
```
git remote add origin <SSH TO REPO>
git branch -M main
git push -u origin main
```