How to Add a File ?

The following are guides to Add a File with Git:

User interface Method

add file

add file

Cmd Method

add file

git clone -b your-branch-name your-cloned-url
hugo server
---
title : "File Name  "
description: >
   File Description 
---
Ctrl+c ( press enter key )

git add . ( press enter key )

git commit -m "Short Description of your work"  ( press enter key )

git pull ( pull latest copy of files.  press enter key )

git push  ( press enter key )
Edit this page