Skip to content

Conversation

Nageswari-droid
Copy link
Collaborator

Introduction

GitConvex is a web app for managing your git repositories. It is supported by Linux, Mac OS and Windows. The latest version of GitConvex supports git features such as initializing and tracking a git repo, staging and unstaging changes, committing changes, pushing changes to selected remote and so on.
The main goal of this platform is to act as a web based alternative for Github desktop, but we are still in the starting stages, so we are not completely there yet (baby steps, right?)

Requirements

  1. Node JS (Version 12.0+)
  2. Git (Version 2.20+)

Download Options

  • Option-1: Directly clone the repo from github
    git clone https://github.com/neel1996/gitconvex-package

  • Option-2 Downloading the zip file from the releases.

  • Option-3 GitConvex is also available on npm. Install the package globally to run it directly from the command line
    npm i -g @itassistors/gitconvex

This will install gitconvex as a global module and it can be started straight away from the command line with gitconvex command

$ gitconvex
  
INFO: Checking for config file
INFO: Config file is present
INFO: Reading from config file /usr/lib/node_modules/@itassistors/gitconvex/env_config.json
GitConvex API connected!
  
Checking data file availability...
INFO: Data file /usr/lib/node_modules/@itassistors/gitconvex/database/repo-datastore.json is present and it will be used as the active data file!
  
You can change this under the settings menu
  
Gitconvex is running on port 9001
  
Open http://localhost:9001/ to access gitconvex

Setup

If either download Option-1 or Option-2 is followed, then the following steps need to be followed to setup GitConvex

  1. For installing all dependencies,
    $npm install

  2. To start a server, either use normal node command
    $node server.js
    or use pm2 by downloading it from npm - npm i -g pm2 and start the module by executing the following command,
    pm2 start ecosystem.config.js

Features available

  • Visualizing basic repo stats such as active branch, active remotes, number of files tracked etc
  • Tracking modified files
  • Creating new branches (provided there are no diverging changes)
  • Initializing git inside a new repo and adding it to the platform tracker on the go
  • File difference tracker with syntax highlighting for the supported languages.
  • Commit log viewer
  • Basic git operations such as staging, un-staging, committing and pushing to remote repo.

How to use

Left Pane Menu

  • Repositories - To check tracked files changes, line based changes with syntax highlighting and git operations (staging, unstaging, commiting changes and pushing changed to remote)
  • Settings - To check and edit internal data file, to remove a repo from gitconvex and to update the active port.
  • Help - Includes documentation link and various options to report an issue or to submit feedback.

Adding a new repo

  • Use "+" at the bottom right corner to add a repo.
    Picture1

  • Enter repo name and paste the repo path. If the folder is not a git repo then check the "Check this if the folder is not a git repo" checkbox to initialize git.
    Picture2

  • The newly added repo will be displayed as a card in the dashboard
    Picture17

Repo Details

  • Click on the repo card to get the following details about the repo
- The list of branches
- Commit logs
- Latest commit
- Active branch and available local branches
- Remote repo URL and host
- Files and folders tracked by git

The repo detail view also provides features for performing the following git operations,

- Adding a new branch
- Pulling changes from remote
- Fetching changes from remote
- Adding a new remote repo

Picture4

enter image description here

Add new branch

Picture5

Note: In a newly initialized git repo, the newly added branch will be considered by git only after a initial commit

  • Next, left pane consists of repositories, settings and help. In "repositories" choose a saved repo. This module has three sections : File view, Git difference and Git operation. The header portion shows chosen repo name, active branch, number of tracked files and commits.

  • File view shows the new/Untracked/Modified/deleted files.
    Picture6

  • Git operations module consists of three basic git operations( Stage all changes, commit changes, push to remote ). Below this file status is display and the files can be staged with add action or click on "stage all changes" to stage all the untracked files from the chosen repo.
    Picture7

  • After add operation all staged files can be removed immediately if you wish to, else ignore it. Reload the page to see the difference in "File View".
    Picture8

  • All staged files can be committed using "Commit changes" module. After commit changes reload the page to see active branch name, number of tracked files and number of commits.
    Picture9

  • After commit changes operation,
    Picture10

  • "Push to remote" module pushes all commits to the remote host. If there is no remote in the chosen repo then ignore this module. After the push to remote is completed, check the remote host to see the pushed folder/file.
    with Remote(Git Hub)
    Picture11

If you try to "push to remote" without having a remote host, "push failed" error message will be displayed.
Picture12

In "Git Difference" click on the modified file(s) to see the difference.
Picture21

  • "Stage all changes" and "commit changes" for applying a change.

  • Settings in the left pane has three sections( Server data file, saved repos, Active GitConvex port number ).
    Picture19

  • Server data file stores repo details. The data file can be updated. The data file must be an accessible JSON file with read / write permissions set to it. Also make sure you enter the full path for the file. E.g: /opt/my_data/data-file.json

  • In the saved repos section, added repo(s) can be deleted permanently from GitConvex.

  • The port number can be updated but make sure to restart the app and to change the port in the URL after updating it.

  • Visit help section if you're facing an issue or need any help. If you have any queries discuss it in "Discord" or report an issue in GitHub.
    Picture20

@neel1996 neel1996 changed the title documentation.md New documentation for gitconvex Jul 12, 2020
DOCUMENTATION.md Outdated
GitConvex is a web app for managing your git repositories. It is supported by Linux, Mac OS and Windows. The [latest version](https://github.com/neel1996/gitconvex-package/releases) of GitConvex supports git features such as initializing and tracking a git repo, staging and unstaging changes, committing changes, pushing changes to selected remote and so on.
The main goal of this platform is to act as a web based alternative for Github desktop, but we are still in the starting stages, so we are not completely there yet (baby steps, right?)
## Requirements
1. Node JS (Version 12.0+)
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Include hyperlink for the requirements

DOCUMENTATION.md Outdated
@@ -0,0 +1,271 @@

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is the old commit with the same defects. Update the file with the draft shared in the comments

@Nageswari-droid Nageswari-droid added the documentation Improvements or additions to documentation label Jul 12, 2020
@neel1996 neel1996 changed the base branch from master to documentation-update July 12, 2020 13:27
@@ -0,0 +1,24 @@
## Languages
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Format the file extensions to make it Bold and fit it within a table

E.g

Extension Name
js javascript

DOCUMENTATION.md Outdated

### Adding a new repo
- Use "+" at the bottom right corner to add a repo.
![Picture1](https://user-images.githubusercontent.com/65342122/87232632-0eff7480-c3de-11ea-8a9f-f0a6cf9cd6ee.png)
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Update the image alt attribute for images to include an apt description

Copy link
Owner

@neel1996 neel1996 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Review updates look good

@neel1996 neel1996 merged commit 60cdac6 into neel1996:documentation-update Jul 12, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants