GIT endpoints
Version 1.7 by Outhman Moustaghfir on 2021/05/05 14:16
Introduction
Git endpoints take advantage of all git commands known and needed to create versions of files.
Endpoints
URL [method] | Description | Input example | Output example |
/rest/git/getstatus [GET] | get all files that have been modified or untracked | (no input required) | { "timestamp": 1620216790744, "status": "200", "data": [ { "fileName": "FileToF.txt", "status": "Untracked" }, { "fileName": "newfile.txt", "status": "Modified" } ] } |
/git/history |