Skip to content

Wiring locally generated‐component to git‐server properly

Mohamed Hassan (JOHN) edited this page Apr 14, 2025 · 4 revisions

knight_of_desolation_by_adehenne_dfwhqar-414w-2x

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.

  1. create new git repository on git-server
  2. 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
Clone this wiki locally