# notes **Repository Path**: ntdm/notes ## Basic Information - **Project Name**: notes - **Description**: my it notes - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-02-27 - **Last Updated**: 2024-05-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # notes ``` //////////////////////////////// // /////////////\\\\ // // (((((((((((((( \\\\ // // ))) ~~ ~~ ((( // // ((( (*) (*) ))) // // ))) < ((( // // ((( '\______/` ))) // // )))\___________/((( // // _) (_ // // / \_/ \ // // //| |\\ // // // )___( \\ // // \\( )// // // ( ) // // | | | // // | | | // // | | | // // _|_|_|_ // // ___ __ __ __ __ // // / _ \ | \/ | \ \ / / // // | |_| | | |\/| | \ V / // // |_| |_| |_| |_| |_| // //////////////////////////////// ``` ### create a new repository on the command line ``` echo "# notes" >> README.md git init git add README.md git commit -m "first commit" git remote add origin https://github.com/damao2017/notes.git git push -u origin master ``` ### push an existing repository from the command line ``` git remote add origin https://github.com/damao2017/notes.git git push -u origin master ```