Skip to content

ishan-im/Cyber-defence

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Cyber Defence

Clone the repo

First, clone this repository and run the development server:

$ git clone [email protected]:ishan-im/Cyber-defence.git
npm install
npm run dev
# or
yarn dev

Open https://localhost:3000 with your browser to see the result.

Push to a new repo

Git push to a new repository:

$ git init
git add -A
git commit -m <commit message>
git remote add origin [email protected]:ishan-im/Cyber-defence.git
git push -u -f origin main

Push to existing repo

Git push to existing repository:

$ git remote set-url origin [email protected]:ishan-im/Cyber-defence.git
git add  -A
git commit -m <commit message>
git push -f origin main

Change reflect in local repo

Git change in remote repo reflect in local repo:

$ git checkout main
git pull -s recursive -X theirs
git reset --hard origin/main
git pull origin main

Learn More

To learn more about Next.js, take a look at the following resources:

Live Deployment

Live Here

Releases

No releases published

Packages

No packages published