colouring-cities / colouring-dresden

GNU General Public License v3.0
0 stars 4 forks source link

(initial) migration of source code from colouring-core to colouring-dresden #15

Closed traveller195 closed 1 year ago

traveller195 commented 1 year ago

just for documentation:

the situation is the following:

applied workflow: create new local directory and jump in also check, whether 'git' (here on Ubuntu command line Terminal) is already installed

git clone -b master https://github.com/colouring-cities/colouring-core/ remove .git directory to remove the history, as well

rm -r .git

initialize new local repo with clean history git init create new branch 'main' git checkout -b main commit git add . git commit –m “Initial commit - from colouring-core/ CCRP ...”

and push everything up into remote repository git remote add origin https://github.com/colouring-cities/colouring-dresden git add . git push -u --force origin main