1.如何删除github创建的仓库Repositories
https://blog.csdn.net/weixin_41862755/article/details/123011329
2.简单Git入门本地仓库同步到远程GitHub仓库
https://blog.csdn.net/LvQiFen/article/details/123169173

hpc@DESKTOP-BDG97H3 MINGW64 /d/GitHub/Ltoad_all_type_exclude_sex_Adamax
$ ls
LICENSE                   data_preprocess/    eval_mtl_concat_all_type.py  main_mtl_concat.py           model_predict_one_wsi_label_from_all_type_exclude_sex.py              py              use_openlise.py
LSCC_CM/                  dataset_csv/        eval_mtl_concat_help         main_mtl_concat_all_type.py  model_predict_one_wsi_label_from_all_type_exclude_sex_chosen.py       python_test.py  utils/
create_splits.py          datasets/           eval_mtl_concat_result.txt   main_mtl_concat_help         model_predict_one_wsi_label_from_all_type_exclude_sex_chosen_copy.py  results/
create_splits_help        docs/               eval_results/                main_mtl_concat_result.txt   models/                                                               splits/
create_splits_result.txt  eval_mtl_concat.py  log_dir/                     mkdir_test.py                process_before_train/                                                 test.pyhpc@DESKTOP-BDG97H3 MINGW64 /d/GitHub/Ltoad_all_type_exclude_sex_Adamax
$ ll
total 248
-rw-r--r-- 1 hpc 197121  34523 Dec 31 23:58 LICENSE
drwxr-xr-x 1 hpc 197121      0 Jun 10 09:52 LSCC_CM/
-rw-r--r-- 1 hpc 197121   3178 Dec 31 23:58 create_splits.py
-rw-r--r-- 1 hpc 197121    624 Dec 31 23:58 create_splits_help
-rw-r--r-- 1 hpc 197121   1587 Dec 31 23:58 create_splits_result.txt
drwxr-xr-x 1 hpc 197121      0 Jun 10 09:52 data_preprocess/
drwxr-xr-x 1 hpc 197121      0 Jun 10 09:52 dataset_csv/
drwxr-xr-x 1 hpc 197121      0 Jun 10 09:52 datasets/
drwxr-xr-x 1 hpc 197121      0 Jun 10 09:52 docs/
-rw-r--r-- 1 hpc 197121   7250 Dec 31 23:58 eval_mtl_concat.py
-rw-r--r-- 1 hpc 197121   7579 Dec 31 23:58 eval_mtl_concat_all_type.py
-rw-r--r-- 1 hpc 197121   1791 Dec 31 23:58 eval_mtl_concat_help
-rw-r--r-- 1 hpc 197121   2120 Dec 31 23:58 eval_mtl_concat_result.txt
drwxr-xr-x 1 hpc 197121      0 Jun 10 09:52 eval_results/
drwxr-xr-x 1 hpc 197121      0 Jun 10 09:52 log_dir/
-rw-r--r-- 1 hpc 197121   9460 Dec 31 23:58 main_mtl_concat.py
-rw-r--r-- 1 hpc 197121   9835 Jan  1 00:09 main_mtl_concat_all_type.py
-rw-r--r-- 1 hpc 197121   1831 Dec 31 23:58 main_mtl_concat_help
-rw-r--r-- 1 hpc 197121 113845 Dec 31 23:58 main_mtl_concat_result.txt
-rw-r--r-- 1 hpc 197121    196 Dec 31 23:58 mkdir_test.py
-rw-r--r-- 1 hpc 197121   7401 Dec 31 23:58 model_predict_one_wsi_label_from_all_type_exclude_sex.py
-rw-r--r-- 1 hpc 197121   7423 Dec 31 23:58 model_predict_one_wsi_label_from_all_type_exclude_sex_chosen.py
-rw-r--r-- 1 hpc 197121   7415 Dec 31 23:58 model_predict_one_wsi_label_from_all_type_exclude_sex_chosen_copy.py
drwxr-xr-x 1 hpc 197121      0 Jun 10 09:52 models/
drwxr-xr-x 1 hpc 197121      0 Jun 10 09:52 process_before_train/
-rw-r--r-- 1 hpc 197121      0 Mar 14 23:36 py
-rw-r--r-- 1 hpc 197121     33 Dec 31 23:58 python_test.py
drwxr-xr-x 1 hpc 197121      0 Jun 10 09:52 results/
drwxr-xr-x 1 hpc 197121      0 Jun 10 09:52 splits/
-rw-r--r-- 1 hpc 197121    917 Dec 31 23:58 test.py
-rw-r--r-- 1 hpc 197121     59 Mar 14 23:35 use_openlise.py
drwxr-xr-x 1 hpc 197121      0 Jun 10 09:52 utils/hpc@DESKTOP-BDG97H3 MINGW64 /d/GitHub/Ltoad_all_type_exclude_sex_Adamax
$ git init
Initialized empty Git repository in D:/GitHub/Ltoad_all_type_exclude_sex_Adamax/.git/hpc@DESKTOP-BDG97H3 MINGW64 /d/GitHub/Ltoad_all_type_exclude_sex_Adamax (master)
$ git config --global user.name "Luan-zb"hpc@DESKTOP-BDG97H3 MINGW64 /d/GitHub/Ltoad_all_type_exclude_sex_Adamax (master)
$ git config --global user.email "L764359986@126.com"hpc@DESKTOP-BDG97H3 MINGW64 /d/GitHub/Ltoad_all_type_exclude_sex_Adamax (master)
$ git config --global --list
user.name=Luan-zb
user.email=L764359986@126.comhpc@DESKTOP-BDG97H3 MINGW64 /d/GitHub/Ltoad_all_type_exclude_sex_Adamax (master)
$ git status
On branch masterNo commits yetUntracked files:(use "git add <file>..." to include in what will be committed).gitignoreLICENSELSCC_CM/create_splits.pycreate_splits_helpcreate_splits_result.txtdata_preprocess/dataset_csv/datasets/docs/eval_mtl_concat.pyeval_mtl_concat_all_type.pyeval_mtl_concat_helpeval_mtl_concat_result.txteval_results/log_dir/main_mtl_concat.pymain_mtl_concat_all_type.pymain_mtl_concat_helpmain_mtl_concat_result.txtmkdir_test.pymodel_predict_one_wsi_label_from_all_type_exclude_sex.pymodel_predict_one_wsi_label_from_all_type_exclude_sex_chosen.pymodel_predict_one_wsi_label_from_all_type_exclude_sex_chosen_copy.pymodels/process_before_train/pypython_test.pyresults/splits/test.pyuse_openlise.pyutils/nothing added to commit but untracked files present (use "git add" to track)hpc@DESKTOP-BDG97H3 MINGW64 /d/GitHub/Ltoad_all_type_exclude_sex_Adamax (master)
$ git add .
warning: LF will be replaced by CRLF in .gitignore.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in LICENSE.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in LSCC_CM/cohort _all.csv.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in create_splits.py.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in create_splits_help.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in create_splits_result.txt.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in data_preprocess/CCRCC_CM_LSCC_label/cohort_LSCC_CM_CCRCC.csv.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in data_preprocess/CCRCC_LSCC_label/cohort.csv.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in data_preprocess/CCRCC_LSCC_substype/cohort.csv.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in data_preprocess/CM_LSCC_label/cohort.csv.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in dataset_csv/cohort_all_type_processed.csv.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in dataset_csv/one_wsi.csv.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in dataset_csv/one_wsi_exclude_sex.csv.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in dataset_csv/one_wsi_exclude_sex_chosen.csv.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in datasets/dataset_mtl_concat.py.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in docs/README.md.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in eval_mtl_concat.py.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in eval_mtl_concat_help.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in eval_mtl_concat_result.txt.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in eval_results/EVAL_dummy_mtl_sex_s1_eval/eval_experiment_dummy_mtl_sex_s1_eval.txt.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in eval_results/EVAL_dummy_mtl_sex_s1_eval/fold_0.csv.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in eval_results/EVAL_dummy_mtl_sex_s1_eval/summary.csv.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in main_mtl_concat.py.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in main_mtl_concat_help.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in main_mtl_concat_result.txt.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in models/model_toad.py.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in models/resnet_custom.py.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in process_before_train/cohort_all_type_processed.csv.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in results/dummy_mtl_sex_s1/experiment_dummy_mtl_sex.txt.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in results/dummy_mtl_sex_s1/splits_0.csv.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in results/dummy_mtl_sex_s1/summary.csv.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in splits/dummy_mtl_concat_100/splits_0.csv.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in splits/dummy_mtl_concat_100/splits_0_bool.csv.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in splits/dummy_mtl_concat_100/splits_0_descriptor.csv.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in use_openlise.py.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in utils/core_utils_mtl_concat.py.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in utils/eval_utils_mtl_concat.py.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in utils/eval_utils_mtl_concat_0128.py.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in utils/eval_utils_mtl_concat_copy.py.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in utils/file_utils.py.
The file will have its original line endings in your working directory
warning: LF will be replaced by CRLF in utils/utils.py.
The file will have its original line endings in your working directoryhpc@DESKTOP-BDG97H3 MINGW64 /d/GitHub/Ltoad_all_type_exclude_sex_Adamax (master)
$ git commit -m "code"
[master (root-commit) e3137d2] code137 files changed, 71574 insertions(+)create mode 100644 .gitignorecreate mode 100644 LICENSEcreate mode 100644 LSCC_CM/CM_LSCC.csvcreate mode 100644 LSCC_CM/CM_LSCC_processed.csvcreate mode 100644 LSCC_CM/all_processed.csvcreate mode 100644 LSCC_CM/cohort _all.csvcreate mode 100644 LSCC_CM/process.pycreate mode 100644 LSCC_CM/process_all.pycreate mode 100644 create_splits.pycreate mode 100644 create_splits_helpcreate mode 100644 create_splits_result.txtcreate mode 100644 data_preprocess/CCRCC_CM_LSCC_label/cohort_LSCC_CM_CCRCC.csvcreate mode 100644 data_preprocess/CCRCC_CM_LSCC_label/processedv1.csvcreate mode 100644 data_preprocess/CCRCC_CM_LSCC_label/processedv2.csvcreate mode 100644 data_preprocess/CCRCC_CM_LSCC_label/processedv3.csvcreate mode 100644 data_preprocess/CCRCC_CM_LSCC_label/processv1.pycreate mode 100644 data_preprocess/CCRCC_CM_LSCC_label/processv2.pycreate mode 100644 data_preprocess/CCRCC_LSCC_label/cohort.csvcreate mode 100644 data_preprocess/CCRCC_LSCC_label/processedv1.csvcreate mode 100644 data_preprocess/CCRCC_LSCC_label/processedv2.csvcreate mode 100644 data_preprocess/CCRCC_LSCC_label/processedv3.csvcreate mode 100644 data_preprocess/CCRCC_LSCC_label/processv1.pycreate mode 100644 data_preprocess/CCRCC_LSCC_label/processv2.pycreate mode 100644 data_preprocess/CCRCC_LSCC_substype/cohort.csvcreate mode 100644 data_preprocess/CCRCC_LSCC_substype/processedv1.csvcreate mode 100644 data_preprocess/CCRCC_LSCC_substype/processedv2.csvcreate mode 100644 data_preprocess/CCRCC_LSCC_substype/processedv2_1.csvcreate mode 100644 data_preprocess/CCRCC_LSCC_substype/processedv2_2.csvcreate mode 100644 data_preprocess/CCRCC_LSCC_substype/processedv3.csvcreate mode 100644 data_preprocess/CCRCC_LSCC_substype/processv1.pycreate mode 100644 data_preprocess/CCRCC_LSCC_substype/processv2_1.pycreate mode 100644 data_preprocess/CCRCC_LSCC_substype/processv2_2.pycreate mode 100644 data_preprocess/CCRCC_LSCC_substype/processv3.pycreate mode 100644 data_preprocess/CM_LSCC_label/all_processed.csvcreate mode 100644 data_preprocess/CM_LSCC_label/cohort.csvcreate mode 100644 data_preprocess/CM_LSCC_label/processedv1.csvcreate mode 100644 data_preprocess/CM_LSCC_label/processedv2.csvcreate mode 100644 data_preprocess/CM_LSCC_label/processedv3.csvcreate mode 100644 data_preprocess/CM_LSCC_label/processv1.pycreate mode 100644 data_preprocess/CM_LSCC_label/processv2.pycreate mode 100644 data_preprocess/Colorectal_Liver_Lung_Stomach/scan_table.xlsxcreate mode 100644 dataset_csv/CM_LSCC_Processed.csvcreate mode 100644 dataset_csv/CM_LSCC_Processed_Augmentation.csvcreate mode 100644 dataset_csv/CM_LSCC_Processed_Reduced.csvcreate mode 100644 dataset_csv/CM_LSCC_Processed_copy.csvcreate mode 100644 dataset_csv/CM_LSCC_primary.csvcreate mode 100644 dataset_csv/cohort_LSCC_CM_CCRCC.csvcreate mode 100644 dataset_csv/cohort_all_type.csvcreate mode 100644 dataset_csv/cohort_all_type_processed.csvcreate mode 100644 dataset_csv/dummy_dataset.csvcreate mode 100644 dataset_csv/one_wsi.csvcreate mode 100644 dataset_csv/one_wsi_exclude_sex.csvcreate mode 100644 dataset_csv/one_wsi_exclude_sex_chosen.csvcreate mode 100644 datasets/dataset_mtl_concat.pycreate mode 100644 docs/README.mdcreate mode 100644 docs/UNP.jpgcreate mode 100644 docs/UNP.pngcreate mode 100644 docs/github_heatmap.jpgcreate mode 100644 eval_mtl_concat.pycreate mode 100644 eval_mtl_concat_all_type.pycreate mode 100644 eval_mtl_concat_helpcreate mode 100644 eval_mtl_concat_result.txtcreate mode 100644 eval_results/EVAL_dummy_mtl_sex_s1_eval/eval_experiment_dummy_mtl_sex_s1_eval.txtcreate mode 100644 eval_results/EVAL_dummy_mtl_sex_s1_eval/fold_0.csvcreate mode 100644 eval_results/EVAL_dummy_mtl_sex_s1_eval/summary.csvcreate mode 100644 log_dir/0_LSCC_CCRCC/events.out.tfevents.1638884901.DELLW01create mode 100644 log_dir/0_LSCC_CM/events.out.tfevents.1638889049.DELLW01create mode 100644 main_mtl_concat.pycreate mode 100644 main_mtl_concat_all_type.pycreate mode 100644 main_mtl_concat_helpcreate mode 100644 main_mtl_concat_result.txtcreate mode 100644 mkdir_test.pycreate mode 100644 model_predict_one_wsi_label_from_all_type_exclude_sex.pycreate mode 100644 model_predict_one_wsi_label_from_all_type_exclude_sex_chosen.pycreate mode 100644 model_predict_one_wsi_label_from_all_type_exclude_sex_chosen_copy.pycreate mode 100644 models/model_toad.pycreate mode 100644 models/resnet_custom.pycreate mode 100644 process_before_train/cohort_LSCC_CM_CCRCC.csvcreate mode 100644 process_before_train/cohort_all_type_processed.csvcreate mode 100644 process_before_train/process_dataset_csv_with_pt_file.pycreate mode 100644 process_before_train/processedv1.csvcreate mode 100644 pycreate mode 100644 python_test.pycreate mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1622426339.DELLW01create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1622427868.DELLW01create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1622427983.DELLW01create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1622428065.DELLW01create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1622428108.DELLW01create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1622428182.DELLW01create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1622428253.DELLW01create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1622449920.DELLW01create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1622449982.DELLW01create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1622450034.DELLW01create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1622453260.DELLW01create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1622453317.DELLW01create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1622453393.DELLW01create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1622465741.DELLW01create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1622466791.DELLW01create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1622466965.DELLW01create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1622467041.DELLW01create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1622467179.DELLW01create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1622618623.DELLW01create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1622623016.DELLW01create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1622625984.DELLW01create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1623207696.DELLW01create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1629879525.DELLW01create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1638524838.DELLW01create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1638526015.DELLW01create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1638526281.DELLW01create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1638526663.DELLW01create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1638526702.DELLW01create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1638526733.DELLW01create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1638526806.DELLW01create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1638527836.DELLW01create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1638529050.DELLW01create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1638530789.DELLW01create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1638531835.DELLW01create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1640417176.DELLW01create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1640417238.DELLW01create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1640417291.DELLW01create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1640968119.DELLW01create mode 100644 results/dummy_mtl_sex_s1/experiment_dummy_mtl_sex.txtcreate mode 100644 results/dummy_mtl_sex_s1/s_0_checkpoint.ptcreate mode 100644 results/dummy_mtl_sex_s1/split_0_results.pklcreate mode 100644 results/dummy_mtl_sex_s1/splits_0.csvcreate mode 100644 results/dummy_mtl_sex_s1/summary.csvcreate mode 100644 splits/dummy_mtl_concat_100/splits_0.csvcreate mode 100644 splits/dummy_mtl_concat_100/splits_0_bool.csvcreate mode 100644 splits/dummy_mtl_concat_100/splits_0_descriptor.csvcreate mode 100644 test.pycreate mode 100644 use_openlise.pycreate mode 100644 utils/core_utils_mtl_concat.pycreate mode 100644 utils/eval_utils_mtl_concat.pycreate mode 100644 utils/eval_utils_mtl_concat_0128.pycreate mode 100644 utils/eval_utils_mtl_concat_copy.pycreate mode 100644 utils/file_utils.pycreate mode 100644 utils/utils.pyhpc@DESKTOP-BDG97H3 MINGW64 /d/GitHub/Ltoad_all_type_exclude_sex_Adamax (master)
$ git log
commit e3137d25083df9810ffbe2a0e6118e092fb77fdb (HEAD -> master)
Author: Luan-zb <L764359986@126.com>
Date:   Fri Jun 10 10:37:11 2022 +0800codehpc@DESKTOP-BDG97H3 MINGW64 /d/GitHub/Ltoad_all_type_exclude_sex_Adamax (master)
$ git remote add origin git@github.com:Luan-zb/Ltoad_all_type_exclude_sex_Adamax.githpc@DESKTOP-BDG97H3 MINGW64 /d/GitHub/Ltoad_all_type_exclude_sex_Adamax (master)
$ git push -u origin master
Enumerating objects: 133, done.
Counting objects: 100% (133/133), done.
Delta compression using up to 8 threads
Compressing objects: 100% (125/125), done.
Writing objects: 100% (133/133), 8.01 MiB | 1.63 MiB/s, done.
Total 133 (delta 25), reused 0 (delta 0), pack-reused 0
remote: Resolving deltas: 100% (25/25), done.
To github.com:Luan-zb/Ltoad_all_type_exclude_sex_Adamax.git* [new branch]      master -> master
Branch 'master' set up to track remote branch 'master' from 'origin'.

2.如何删除github创建的仓库Repositories

https://blog.csdn.net/weixin_41862755/article/details/123011329

简单Git入门本地仓库同步到远程GitHub仓库相关推荐

  1. 使用Git将本地文件提交到远程仓库

    使用Git将本地文件提交到远程仓库 使用Git将本地文件提交到远程仓库 现在要将本地代码推到git远程仓库保存,可以提交和拉取操作 本地项目已经创建 git远程仓库已经建(github.gitee都行 ...

  2. clone远程代码 在不同电脑上git_如何使用git在本地电脑clone别人的github上的远程仓库代码...

    如何使用git在本地电脑clone别人的github上的远程仓库代码背景操作步骤1.在自己电脑创建本地仓库2.git初始化设置.仓库的初始化以及绑定SSH秘钥3.fork别人的github项目,然后c ...

  3. GIT将本地项目上传到Github(两种简单、方便的方法)

    GIT将本地项目上传到Github(两种简单.方便的方法) 一.第一种方法: 首先你需要一个github账号,所有还没有的话先去注册吧! https://github.com/ 我们使用git需要先安 ...

  4. 【GIT】使用Git命令窗口将本地工程提交至远程GitHub

    目标: 1.解决的问题是如何通过Git命令窗口将本地工程提交至GitHub. 2.方便园友的同时也方便自己以后解决此类问题. 步骤: 1.首先登陆GitHub网站https://github.com/ ...

  5. Git使用及创建本地文件推送到github仓库

    Git使用 一.安装Git 一般我们工作的电脑都是Windows系统,要使用git首先要进行安装.从软件管家或者其他平台找到git的安装包,下载后默认安装即可. 安装成功之后,可以在开始菜单里面找到g ...

  6. 将本地源代码程序推送远程Github仓库

    将本地源代码程序推送远程Github仓库 1.查看改动文件的状态 2.将修改的代码从工作区添加至暂存区 3.将暂存区的代码添加至本地仓库 4.将本地仓库中的代码Push到Github 5.登录Gith ...

  7. 【git】Git删除本地分支和删除远程分支

    Git删除本地分支和删除远程分支 具体操作: 我现在在dev20181018分支上,想删除dev20181018分支 1.先切换到别的分支: git checkout dev20180927 2.删除 ...

  8. git删除本地分支、删除远程分支 复制分支

    git删除本地分支.删除远程分支 It_BeeCoder 2019-05-15 09:47:20  80268  收藏 15 展开 https://blog.csdn.net/lihua5419/ar ...

  9. idea怎么提交到dev分支_idea中新建git分支,并提交到远程github

    一.IDEA连接github,创建本地仓库和远程github仓库 2. idea创建本地仓库,连接github远程仓库.参考:idea中将项目与github关联 二.IDEA中创建本地分支,并提交到远 ...

  10. git同步代码到远程github仓库

    原文地址: http://www.runoob.com/git/git-remote-repo.html Git 远程仓库(Github) Git 并不像 SVN 那样有个中心服务器. 目前我们使用到 ...

最新文章

  1. 燃爆了!天猫联合天一广场搞事情,800万宁波人坐不住了
  2. C#使用ExecuteReader返回DataReader既有查询结果集又有输出参数或返回值的使用注意事项...
  3. java的query_Java-Query
  4. MySql数据库查询表信息/列信息(列ID/列名/数据类型/长度/精度/是否可以为null/默认值/是否自增/是否是主键/列描述)...
  5. 初识Lucene.net
  6. php websocket 实战,一次WebSocket项目实战后总结的经验
  7. [Leedcode][JAVA][第98题][验证二叉搜索树]
  8. 《 Spring 实战 》(第4版) 读书笔记 (未完结,更新中...)
  9. 用计算机解题 算法理科,求解数独算法求用计算机可以实现的算法不要人工解题思路 爱问知识人...
  10. websocket html5 api,HTML5 新特性之 Websocket
  11. Linux OS共享文件
  12. 设计模式之GOF23代理模式01
  13. 【目标检测】mAP评价标准
  14. matlab的共轭梯度法
  15. Oracle获取汉字拼音码
  16. KVM实验一 pepsi-wyl
  17. 交换机上的指示灯狂闪
  18. 教你如何在电脑上建一个绝密文件夹
  19. 实力肯定!Coremail邮件网关荣获金融信创优秀解决方案奖
  20. 最新消息: 百度办公楼门口拉横幅抗议百度竞价广告(图)

热门文章

  1. Directx8 学习笔记
  2. 实分析royden第四版答案_实分析(原书第4版)_[美]H.L.罗伊登(H.L.Royden) P.M.菲茨帕特里克(P.M.Fitzpatrick)_9787111630845_...
  3. html打开网页一段时间字幕滚动,网页代码:求一个隔段时间可停顿的滚动字幕代码...
  4. 为什么csrss进程有三个_什么是客户端服务器运行时进程(csrss.exe),为什么在我的PC上运行它?...
  5. 如何发布一个BT种子文件
  6. 关于.Net WebProxy【转】
  7. Spring Cloud Alibaba RocketMQ 快速入门
  8. .Net·使用ILSpy反编译exe或dll文件保存为项目结构
  9. 大学生静态HTML鲜花网页设计作品 DIV布局网上鲜花介绍网页模板代码 DW花店网站制作成品 web网页制作与实现
  10. c语言个人日记本系统的设计,[设计]c语言程序课程设计日记本管理系统.doc