# LeetCode **Repository Path**: chen_zufeng/leet-code ## Basic Information - **Project Name**: LeetCode - **Description**: No description available - **Primary Language**: Unknown - **License**: Unlicense - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-07-04 - **Last Updated**: 2021-07-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # LeetCode LeetCode学习 # Git 全局设置 ``` git config --global user.name "Chenzufeng" git config --global user.email "chenzufeng@outlook.com" ``` # 创建 git 仓库 ``` mkdir leet-code cd leet-code git init touch README.md git add README.md git commit -m "first commit" git remote add origin https://gitee.com/chen_zufeng/leet-code.git git push -u origin master ``` # 已有仓库 ``` cd existing_git_repo git remote add origin https://gitee.com/chen_zufeng/leet-code.git git push -u origin master ```