Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/Software-Lifecycle-Consultants/poc-archive

POC-Archive is our centralized GitHub repository for storing and sharing Proof of Concepts (POCs) developed by our team. It facilitates collaboration, innovation, and knowledge sharing within our organization and with external stakeholders by providing a centralized location for storing POCs.
https://github.com/Software-Lifecycle-Consultants/poc-archive

Last synced: 9 days ago
JSON representation

POC-Archive is our centralized GitHub repository for storing and sharing Proof of Concepts (POCs) developed by our team. It facilitates collaboration, innovation, and knowledge sharing within our organization and with external stakeholders by providing a centralized location for storing POCs.

Awesome Lists containing this project

README

        

## To Add Projects to this archive, please follow the below instructions

- Go into your project's parent folder and exescute following commands

1. Initialize a new Git repository in the current directory.
```bash
git init
```
2. Update your local copy of the remote branches wih the latest changes from the remote repository
```bash
git fetch
```
3. Receive the latest changes from the remote repository and integrates those changes into your current branch
```bash
git push
```
4. Receive the latest changes from the remote repository and integrates those changes into your current branch (with unrelated histories)
```bash
git pull origin master --allow-unrelated-histories
```
5. Add/Stage your project
```bash
git add your-project/
```
6. Commit your project
```bash
git commit -m "first commit"
```
7. Add remote repository to your local Git repository
```bash
git remote add origin https://github.com/Software-Lifecycle-Consultants/poc-archive.git
```
8. Upload local repository content to a remote repository
```bash
git push -u origin main
```

## To Download the Archive
```bash
git https://github.com/Software-Lifecycle-Consultants/poc-archive.git
```