-
Notifications
You must be signed in to change notification settings - Fork 0
Wiring locally generated‐component to git‐server properly
Mohamed Hassan (JOHN) edited this page Apr 14, 2025
·
4 revisions
After using this tool from the CMD, you will get a locally generated-component (Project as an IDE-term).
You have to wire this component with git-server, so developers can start adding code to it incrementally when they start working on the required features as business needs say so.
- create new git repository on git-server
- use the below commands from the project's root directory on your local machine after generating the project's skeleton
git init
git add .
git commit -m "add project's skeleton"
git remote add origin git@github.com:<YOUR_GIT_USERNAME>/<REPOSITORY_NAME>.git
git push -u origin master