ai-joe-here commited on
Commit
c0a23ca
·
1 Parent(s): 58d3e9f

Adding some notes for windows users

Browse files
Files changed (1) hide show
  1. Windows_Notes.md +7 -1
Windows_Notes.md CHANGED
@@ -47,6 +47,12 @@ fastmcp dev server.py
47
  ```
48
  This will launch a web app on http://localhost:5173/ that you can use to inspect the FastMCP server.
49
 
50
-
 
 
 
 
 
 
51
 
52
 
 
47
  ```
48
  This will launch a web app on http://localhost:5173/ that you can use to inspect the FastMCP server.
49
 
50
+ ## If you start development before creating a fork - your get out of jail free card
51
+ - Add your fork as a new remote to your local repository `git remote add fork git@github.com:YOUR-USERNAME/REPOSITORY-NAME.git`
52
+ - This will add your repo, short named 'fork', as a remote to your local repository
53
+ - Verify that it was added correctly by running `git remote -v`
54
+ - Commit your changes
55
+ - Push your changes to your fork `git push fork <branch>`
56
+ - Create your pull request on GitHub
57
 
58