简单Git入门本地仓库同步到远程GitHub仓库

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.py

hpc@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.com

hpc@DESKTOP-BDG97H3 MINGW64 /d/GitHub/Ltoad_all_type_exclude_sex_Adamax (master)
$ git status
On branch master

No commits yet

Untracked files:
  (use "git add <file>..." to include in what will be committed)
        .gitignore
        LICENSE
        LSCC_CM/
        create_splits.py
        create_splits_help
        create_splits_result.txt
        data_preprocess/
        dataset_csv/
        datasets/
        docs/
        eval_mtl_concat.py
        eval_mtl_concat_all_type.py
        eval_mtl_concat_help
        eval_mtl_concat_result.txt
        eval_results/
        log_dir/
        main_mtl_concat.py
        main_mtl_concat_all_type.py
        main_mtl_concat_help
        main_mtl_concat_result.txt
        mkdir_test.py
        model_predict_one_wsi_label_from_all_type_exclude_sex.py
        model_predict_one_wsi_label_from_all_type_exclude_sex_chosen.py
        model_predict_one_wsi_label_from_all_type_exclude_sex_chosen_copy.py
        models/
        process_before_train/
        py
        python_test.py
        results/
        splits/
        test.py
        use_openlise.py
        utils/

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 directory

hpc@DESKTOP-BDG97H3 MINGW64 /d/GitHub/Ltoad_all_type_exclude_sex_Adamax (master)
$ git commit -m "code"
[master (root-commit) e3137d2] code
 137 files changed, 71574 insertions(+)
 create mode 100644 .gitignore
 create mode 100644 LICENSE
 create mode 100644 LSCC_CM/CM_LSCC.csv
 create mode 100644 LSCC_CM/CM_LSCC_processed.csv
 create mode 100644 LSCC_CM/all_processed.csv
 create mode 100644 LSCC_CM/cohort _all.csv
 create mode 100644 LSCC_CM/process.py
 create mode 100644 LSCC_CM/process_all.py
 create mode 100644 create_splits.py
 create mode 100644 create_splits_help
 create mode 100644 create_splits_result.txt
 create mode 100644 data_preprocess/CCRCC_CM_LSCC_label/cohort_LSCC_CM_CCRCC.csv
 create mode 100644 data_preprocess/CCRCC_CM_LSCC_label/processedv1.csv
 create mode 100644 data_preprocess/CCRCC_CM_LSCC_label/processedv2.csv
 create mode 100644 data_preprocess/CCRCC_CM_LSCC_label/processedv3.csv
 create mode 100644 data_preprocess/CCRCC_CM_LSCC_label/processv1.py
 create mode 100644 data_preprocess/CCRCC_CM_LSCC_label/processv2.py
 create mode 100644 data_preprocess/CCRCC_LSCC_label/cohort.csv
 create mode 100644 data_preprocess/CCRCC_LSCC_label/processedv1.csv
 create mode 100644 data_preprocess/CCRCC_LSCC_label/processedv2.csv
 create mode 100644 data_preprocess/CCRCC_LSCC_label/processedv3.csv
 create mode 100644 data_preprocess/CCRCC_LSCC_label/processv1.py
 create mode 100644 data_preprocess/CCRCC_LSCC_label/processv2.py
 create mode 100644 data_preprocess/CCRCC_LSCC_substype/cohort.csv
 create mode 100644 data_preprocess/CCRCC_LSCC_substype/processedv1.csv
 create mode 100644 data_preprocess/CCRCC_LSCC_substype/processedv2.csv
 create mode 100644 data_preprocess/CCRCC_LSCC_substype/processedv2_1.csv
 create mode 100644 data_preprocess/CCRCC_LSCC_substype/processedv2_2.csv
 create mode 100644 data_preprocess/CCRCC_LSCC_substype/processedv3.csv
 create mode 100644 data_preprocess/CCRCC_LSCC_substype/processv1.py
 create mode 100644 data_preprocess/CCRCC_LSCC_substype/processv2_1.py
 create mode 100644 data_preprocess/CCRCC_LSCC_substype/processv2_2.py
 create mode 100644 data_preprocess/CCRCC_LSCC_substype/processv3.py
 create mode 100644 data_preprocess/CM_LSCC_label/all_processed.csv
 create mode 100644 data_preprocess/CM_LSCC_label/cohort.csv
 create mode 100644 data_preprocess/CM_LSCC_label/processedv1.csv
 create mode 100644 data_preprocess/CM_LSCC_label/processedv2.csv
 create mode 100644 data_preprocess/CM_LSCC_label/processedv3.csv
 create mode 100644 data_preprocess/CM_LSCC_label/processv1.py
 create mode 100644 data_preprocess/CM_LSCC_label/processv2.py
 create mode 100644 data_preprocess/Colorectal_Liver_Lung_Stomach/scan_table.xlsx
 create mode 100644 dataset_csv/CM_LSCC_Processed.csv
 create mode 100644 dataset_csv/CM_LSCC_Processed_Augmentation.csv
 create mode 100644 dataset_csv/CM_LSCC_Processed_Reduced.csv
 create mode 100644 dataset_csv/CM_LSCC_Processed_copy.csv
 create mode 100644 dataset_csv/CM_LSCC_primary.csv
 create mode 100644 dataset_csv/cohort_LSCC_CM_CCRCC.csv
 create mode 100644 dataset_csv/cohort_all_type.csv
 create mode 100644 dataset_csv/cohort_all_type_processed.csv
 create mode 100644 dataset_csv/dummy_dataset.csv
 create mode 100644 dataset_csv/one_wsi.csv
 create mode 100644 dataset_csv/one_wsi_exclude_sex.csv
 create mode 100644 dataset_csv/one_wsi_exclude_sex_chosen.csv
 create mode 100644 datasets/dataset_mtl_concat.py
 create mode 100644 docs/README.md
 create mode 100644 docs/UNP.jpg
 create mode 100644 docs/UNP.png
 create mode 100644 docs/github_heatmap.jpg
 create mode 100644 eval_mtl_concat.py
 create mode 100644 eval_mtl_concat_all_type.py
 create mode 100644 eval_mtl_concat_help
 create mode 100644 eval_mtl_concat_result.txt
 create mode 100644 eval_results/EVAL_dummy_mtl_sex_s1_eval/eval_experiment_dummy_mtl_sex_s1_eval.txt
 create mode 100644 eval_results/EVAL_dummy_mtl_sex_s1_eval/fold_0.csv
 create mode 100644 eval_results/EVAL_dummy_mtl_sex_s1_eval/summary.csv
 create mode 100644 log_dir/0_LSCC_CCRCC/events.out.tfevents.1638884901.DELLW01
 create mode 100644 log_dir/0_LSCC_CM/events.out.tfevents.1638889049.DELLW01
 create mode 100644 main_mtl_concat.py
 create mode 100644 main_mtl_concat_all_type.py
 create mode 100644 main_mtl_concat_help
 create mode 100644 main_mtl_concat_result.txt
 create mode 100644 mkdir_test.py
 create mode 100644 model_predict_one_wsi_label_from_all_type_exclude_sex.py
 create mode 100644 model_predict_one_wsi_label_from_all_type_exclude_sex_chosen.py
 create mode 100644 model_predict_one_wsi_label_from_all_type_exclude_sex_chosen_copy.py
 create mode 100644 models/model_toad.py
 create mode 100644 models/resnet_custom.py
 create mode 100644 process_before_train/cohort_LSCC_CM_CCRCC.csv
 create mode 100644 process_before_train/cohort_all_type_processed.csv
 create mode 100644 process_before_train/process_dataset_csv_with_pt_file.py
 create mode 100644 process_before_train/processedv1.csv
 create mode 100644 py
 create mode 100644 python_test.py
 create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1622426339.DELLW01
 create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1622427868.DELLW01
 create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1622427983.DELLW01
 create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1622428065.DELLW01
 create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1622428108.DELLW01
 create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1622428182.DELLW01
 create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1622428253.DELLW01
 create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1622449920.DELLW01
 create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1622449982.DELLW01
 create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1622450034.DELLW01
 create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1622453260.DELLW01
 create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1622453317.DELLW01
 create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1622453393.DELLW01
 create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1622465741.DELLW01
 create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1622466791.DELLW01
 create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1622466965.DELLW01
 create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1622467041.DELLW01
 create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1622467179.DELLW01
 create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1622618623.DELLW01
 create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1622623016.DELLW01
 create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1622625984.DELLW01
 create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1623207696.DELLW01
 create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1629879525.DELLW01
 create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1638524838.DELLW01
 create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1638526015.DELLW01
 create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1638526281.DELLW01
 create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1638526663.DELLW01
 create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1638526702.DELLW01
 create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1638526733.DELLW01
 create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1638526806.DELLW01
 create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1638527836.DELLW01
 create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1638529050.DELLW01
 create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1638530789.DELLW01
 create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1638531835.DELLW01
 create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1640417176.DELLW01
 create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1640417238.DELLW01
 create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1640417291.DELLW01
 create mode 100644 results/dummy_mtl_sex_s1/0/events.out.tfevents.1640968119.DELLW01
 create mode 100644 results/dummy_mtl_sex_s1/experiment_dummy_mtl_sex.txt
 create mode 100644 results/dummy_mtl_sex_s1/s_0_checkpoint.pt
 create mode 100644 results/dummy_mtl_sex_s1/split_0_results.pkl
 create mode 100644 results/dummy_mtl_sex_s1/splits_0.csv
 create mode 100644 results/dummy_mtl_sex_s1/summary.csv
 create mode 100644 splits/dummy_mtl_concat_100/splits_0.csv
 create mode 100644 splits/dummy_mtl_concat_100/splits_0_bool.csv
 create mode 100644 splits/dummy_mtl_concat_100/splits_0_descriptor.csv
 create mode 100644 test.py
 create mode 100644 use_openlise.py
 create mode 100644 utils/core_utils_mtl_concat.py
 create mode 100644 utils/eval_utils_mtl_concat.py
 create mode 100644 utils/eval_utils_mtl_concat_0128.py
 create mode 100644 utils/eval_utils_mtl_concat_copy.py
 create mode 100644 utils/file_utils.py
 create mode 100644 utils/utils.py

hpc@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 +0800

    code

hpc@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.git

hpc@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

3,Github挂载大文件解决方案
注:该操作必须在登录到github账户后进行相应的操作。

http://t.zoukankan.com/hupo376787-p-12054367.html
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值