ffreedom.Com

Developers Document Links
1)Project Process
2)Development Process (Git)
3)Coding Standard
4)Requirement
5)Table Creation
6)Development Document
7)Developers Emails
7) Email: developers@ffreedom.com
   Password : Developer@jan2025
8)dev Mob : 7996751923
GitLab

Master Merge Status =>      
Compare with Master
App Username:Password
imi_appsnarasimha.b_imi : imi12345
Dev Serverimc_dev@15.207.145.124
NqzvXYyLadRGx3Cz
DatabaseCredentials
Mysql 8root : Mysql8!=100
Users Folders
Tejaswini(8) imi_u01
Darshini(7) imi_u02
Sankara(8) imi_u03
Madhuri(10) imi_u04
Shyam(4) imi_u05
Suganthi(9) imi_u06
Nandeesh(6) imi_u07
Charan(4) imi_u08
Sneha(6) imi_u09
Nivesh(7) imi_u10
Kshtij(4) imi_u11
Sambath(11) imi_u12
Hanu(3) imi_u14
Royston(2) imi_u15
Prabha(60) imi_u16
Santosh(3) imi_u17
Armaan(2) imi_u18
Srinu(7) imi_u20
Prabhu(20) imi_u23
Senthil(4) imi_u24
Jeyakumar(11)imi_u25
Rasheed(7) imi_u26
-----(7) imi_u10
-----(4) imi_u13
API Test(6) imi_u22
Users Folders
RDS Test(18) imi111
Test (10) TL Test
UAT (1) UAT
Admin (27) imi
Rahul(10) test_u03
Dev Config Files
CRM_Design Download
IMC_web IMC_apps
JenkinsIMC DsoProd
Tech Helpdesk RedisInsight
Domain IP
dev.indianmoney 34.93.40.85
Staging
staging.moneyadvice 34.100.141.245
staging Mysql8 Main 34.93.245.67
apps.indianmoney.in 13.126.179.182
devlmapp.moneyadvice.in 13.126.123.36
Production
apps.ffreedom 34.93.181.242
apps.indianmoney 13.126.151.134
lmapp.indianmoney.com 13.234.123.247
Nimesa 15.207.192.1
Production Database
Production DB (5.5) 52.66.141.20
Production HRM DB (5.7) ----
Production Mysql8 Main 34.47.132.195
Production Mysql8 LM 35.200.134.231
Iamcheated 65.0.194.252
Spred Sheet LinksMobile API
1)Tech Project TrackerLeadMarket App
LeadMarket App V2
2)Ready To TestIM Team App
 IM Team App V2 - API's
3)Daily Testing LogMoneykart App
4)Daily Release LogDirect Sales App
5)No Edits (imc_apps)IndianMoney App
6)Lazy Load IMC IndianMoney Flutter App V1
7)Kafka - CDC IndianMoney Flutter App V1
8)Dev-connectors - CDC IndianMoney Flutter App V1
IndianMoney Flutter App V2
IndianMoney Flutter App V3
IndianMoney Flutter App V4
IndianMoney Community API V1
IndianMoney DC API V1
IndianMoney Flutter App V5
IndianMoney Flutter App Network APIs
FFW Admin App API's
LeadMarket Flutter App V1
FFA_Revamp API Docs
×

Git Commands

git status

git branch

git checkout master

git pull origin master

git checkout -b developer_branch

git add . (git add -A for deleted files)

git commit -m "your commit message"

git pull origin master

git push origin developer_branch

git reflog /*check commit ID*/

git diff-tree --no-commit-id --name-only -r commitID /*check All commited files from commit id*/

1.Reset Commands

git fetch /*to update local branch with latest remote changes*/
git reset --hard origin/master /*to reset your branch or master branch.*/

git fetch
git reset --hard origin/master filepath
/*reset single file*/

git reset --hard commitid /*reset your branch to previous commit*/

2.Search in repository

git grep "text" /* search file */
git reflog | "commit message" /* search commit message */

3.Delete branch

git branch -D developer_branch /* delete developer branch */

4.Remove all branches that are not for example 'master', 'foo' and 'bar'

git branch -D `git branch | grep -vE 'master|foo|bar'

5.Delete all staging branches

git branch | grep 'staging.' | xargs git branch -D

×