group_commits_map.json 171 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596
  1. {
  2. "1": [
  3. {
  4. "id": "13c62ec740b349e2e733ebde0b5562bd3e247874",
  5. "message": "init:前端项目初始化\n",
  6. "committer_name": "薇草道人",
  7. "committer_email": "10357165+taoist-wei-cao@user.noreply.gitee.com",
  8. "projectId": 465
  9. },
  10. {
  11. "id": "7aed8df30ac9693dd565fe48edfd8817f8335787",
  12. "message": "feat: complete #2063#\n",
  13. "committer_name": "TY1",
  14. "committer_email": "1356453973@qq.com",
  15. "projectId": 465
  16. },
  17. {
  18. "id": "c6c7b53209772316c5af1cfb90260e0b87a13022",
  19. "message": "init:try_yjl_01\n",
  20. "committer_name": "薇草道人",
  21. "committer_email": "10357165+taoist-wei-cao@user.noreply.gitee.com",
  22. "projectId": 465
  23. },
  24. {
  25. "id": "563a250bb6783728ddc86a89d3159b7255b21237",
  26. "message": "init:try-yjl-02\n",
  27. "committer_name": "薇草道人",
  28. "committer_email": "10357165+taoist-wei-cao@user.noreply.gitee.com",
  29. "projectId": 465
  30. },
  31. {
  32. "id": "0f3d5e7ee808a3b06d625e5f0d372e100bbb275d",
  33. "message": "init:后端项目初始化\n",
  34. "committer_name": "薇草道人",
  35. "committer_email": "10357165+taoist-wei-cao@user.noreply.gitee.com",
  36. "projectId": 464
  37. },
  38. {
  39. "id": "8ea5aa431b84fe9d6e0152a7e802b688710ef31e",
  40. "message": "init:项目初始化\n",
  41. "committer_name": "201250230",
  42. "committer_email": "201250230@smail.nju.edu.cn",
  43. "projectId": 464
  44. },
  45. {
  46. "id": "3d7c6c57d3f595b23174ba2944a40f7c00eff23e",
  47. "message": "init: try-yjl-01\n",
  48. "committer_name": "薇草道人",
  49. "committer_email": "10357165+taoist-wei-cao@user.noreply.gitee.com",
  50. "projectId": 464
  51. },
  52. {
  53. "id": "5c237b0dbbb760211732b4c8eab409533445b23e",
  54. "message": "init: try-yjl-02\n",
  55. "committer_name": "薇草道人",
  56. "committer_email": "10357165+taoist-wei-cao@user.noreply.gitee.com",
  57. "projectId": 464
  58. }
  59. ],
  60. "2": [
  61. {
  62. "id": "f17cd994e39c7038809253defb499454ece32e34",
  63. "message": "init:项目初始化\n",
  64. "committer_name": "201250203",
  65. "committer_email": "1072825625@qq.com",
  66. "projectId": 866
  67. },
  68. {
  69. "id": "cd24cb8789b52f4378a69d9a509119f8e9222eef",
  70. "message": "Changes\n",
  71. "committer_name": "201250203",
  72. "committer_email": "1072825625@qq.com",
  73. "projectId": 866
  74. },
  75. {
  76. "id": "c7a791704a2e9daccdcadd0e39bb177c45c59a9f",
  77. "message": "Changes\n",
  78. "committer_name": "201250203",
  79. "committer_email": "1072825625@qq.com",
  80. "projectId": 866
  81. },
  82. {
  83. "id": "9e77452ad38bde1ff1a172542cb4d25207e8575b",
  84. "message": "Merge remote-tracking branch 'origin/master'\n",
  85. "committer_name": "201250203",
  86. "committer_email": "1072825625@qq.com",
  87. "projectId": 866
  88. },
  89. {
  90. "id": "5ffba823fa9b565542804fbcee1d3eeb8b042ac9",
  91. "message": "Changes\n",
  92. "committer_name": "201250203",
  93. "committer_email": "1072825625@qq.com",
  94. "projectId": 866
  95. },
  96. {
  97. "id": "c8f4f58efe9a388a4b405517ad6fc5da8c3f8516",
  98. "message": "init:项目初始化\n",
  99. "committer_name": "201250203",
  100. "committer_email": "1072825625@qq.com",
  101. "projectId": 865
  102. },
  103. {
  104. "id": "cbea2e69f8ad339287767e4fbd55b8dbfec6d88a",
  105. "message": "set yml\n",
  106. "committer_name": "Destroy",
  107. "committer_email": "2087953253@qq.com",
  108. "projectId": 865
  109. },
  110. {
  111. "id": "b844099069b6b3284be6281dfc814d0db415fa84",
  112. "message": "Changes\n",
  113. "committer_name": "201250203",
  114. "committer_email": "1072825625@qq.com",
  115. "projectId": 865
  116. },
  117. {
  118. "id": "3d1a8873ffbb0c933c23a35f9f9496633c8ee045",
  119. "message": "Merge remote-tracking branch 'origin/master'\n",
  120. "committer_name": "201250203",
  121. "committer_email": "1072825625@qq.com",
  122. "projectId": 865
  123. },
  124. {
  125. "id": "0632a2f2cd8bfcb81338a2e218d5ef50a0b86a31",
  126. "message": "fix: fix #199#, 199已修复\n",
  127. "committer_name": "qqq白",
  128. "committer_email": "2176850083@qq.com",
  129. "projectId": 865
  130. },
  131. {
  132. "id": "99cdaf1d6de99f4b9f7544901c2096d1d86e01a5",
  133. "message": "fix: fix #199#, 199已修复\n",
  134. "committer_name": "qqq白",
  135. "committer_email": "2176850083@qq.com",
  136. "projectId": 865
  137. },
  138. {
  139. "id": "dc6d402d129914239b61dc03dafd3b0df3ad9bd2",
  140. "message": "fix: fix #200#, 200已修复\n",
  141. "committer_name": "qqq白",
  142. "committer_email": "2176850083@qq.com",
  143. "projectId": 865
  144. }
  145. ],
  146. "3": [
  147. {
  148. "id": "c5f46c12b198c8c2ba089ebbb2b86a1ed698128c",
  149. "message": "init: 项目初始化\n",
  150. "committer_name": "whale",
  151. "committer_email": "1466978121@qq.com",
  152. "projectId": 739
  153. },
  154. {
  155. "id": "795281fa856d3934178b61f20091290c941c0478",
  156. "message": "fix: fixing on #126#, 修改126\n",
  157. "committer_name": "201250144",
  158. "committer_email": "1241446541@qq.com",
  159. "projectId": 739
  160. },
  161. {
  162. "id": "03977bc0c6e14cf15d1204febc956f4066ae2a07",
  163. "message": "fix: fix #126#, 提交空title的bug已经解决\n",
  164. "committer_name": "201250144",
  165. "committer_email": "1241446541@qq.com",
  166. "projectId": 739
  167. },
  168. {
  169. "id": "292f4cfa2fa222b2c5592d389f1b7d47b3a17087",
  170. "message": "feat: working on #2256#, 添加用户名学号完成\n",
  171. "committer_name": "201250144",
  172. "committer_email": "1241446541@qq.com",
  173. "projectId": 739
  174. },
  175. {
  176. "id": "97c81746ade9ccc4091f666474b04344acd3b4ec",
  177. "message": "feat: working on #2256#\n",
  178. "committer_name": "201250144",
  179. "committer_email": "1241446541@qq.com",
  180. "projectId": 739
  181. },
  182. {
  183. "id": "6ca77a45eaff6db9722febdefa3dd873c6d22832",
  184. "message": "fixing on #171#\n",
  185. "committer_name": "201250144",
  186. "committer_email": "1241446541@qq.com",
  187. "projectId": 739
  188. },
  189. {
  190. "id": "3c70bda01376c46ef9c6b30155622ade7d584e60",
  191. "message": "fix: fixing on #171#,修改171\n",
  192. "committer_name": "201250144",
  193. "committer_email": "1241446541@qq.com",
  194. "projectId": 739
  195. },
  196. {
  197. "id": "9fcdc145f3759c67b8397b24b5d2aee1f869243f",
  198. "message": "fix: fixing on #171#,修改171\n",
  199. "committer_name": "201250144",
  200. "committer_email": "1241446541@qq.com",
  201. "projectId": 739
  202. },
  203. {
  204. "id": "cb2c8ea40dd1757366caebaa5def9ba0a95337d4",
  205. "message": "fix: fixing on #171#,修改171\n",
  206. "committer_name": "201250144",
  207. "committer_email": "1241446541@qq.com",
  208. "projectId": 739
  209. },
  210. {
  211. "id": "c09ab7783af3c891e74de2c50a094a135eaed4fd",
  212. "message": "fix: fixing on #171#,修改171\n",
  213. "committer_name": "201250144",
  214. "committer_email": "1241446541@qq.com",
  215. "projectId": 739
  216. },
  217. {
  218. "id": "19372a4e7e1e5ef692dd28b0fca206c9d68aadc9",
  219. "message": "fix: fixing on #171#,修改171\n",
  220. "committer_name": "201250144",
  221. "committer_email": "1241446541@qq.com",
  222. "projectId": 739
  223. },
  224. {
  225. "id": "fe0f92c540c45b633188ec97ba035db74c5e8abb",
  226. "message": "fix: fixing on #171#,修改171\n",
  227. "committer_name": "201250144",
  228. "committer_email": "1241446541@qq.com",
  229. "projectId": 739
  230. },
  231. {
  232. "id": "14894a2a603e90dbc70163786cb40a84e77de942",
  233. "message": "fix: fixing on #171#,修改171\n",
  234. "committer_name": "201250144",
  235. "committer_email": "1241446541@qq.com",
  236. "projectId": 739
  237. },
  238. {
  239. "id": "9a8b6ff820a3bb343d88d33f3020fd8292ed525d",
  240. "message": "init: 项目初始化\n",
  241. "committer_name": "whale",
  242. "committer_email": "1466978121@qq.com",
  243. "projectId": 738
  244. },
  245. {
  246. "id": "b90b100d300951cc8e326caa869b111bf49c75e8",
  247. "message": "modify application.yml\n",
  248. "committer_name": "whale",
  249. "committer_email": "1466978121@qq.com",
  250. "projectId": 738
  251. },
  252. {
  253. "id": "c1a1f7a7432c391042ac1c7f6ae8167ee8ff5fd8",
  254. "message": "fix: fixing on #171#, 修改171\n",
  255. "committer_name": "whale",
  256. "committer_email": "1466978121@qq.com",
  257. "projectId": 738
  258. },
  259. {
  260. "id": "8d16551d5737a02af613f577e6a4d6aa89b79b9c",
  261. "message": "fix: fix #171#, 点击更改任务状态无效的bug已解决\n",
  262. "committer_name": "whale",
  263. "committer_email": "1466978121@qq.com",
  264. "projectId": 738
  265. },
  266. {
  267. "id": "765885f8628b20aa2dbe99f00ebe891337dd7986",
  268. "message": "modify application.yml\n",
  269. "committer_name": "whale",
  270. "committer_email": "1466978121@qq.com",
  271. "projectId": 738
  272. },
  273. {
  274. "id": "3812ace015250c7c8c3172eb4d888ea0ee4d5e24",
  275. "message": "fix: fixing on #171#, 修改171\n",
  276. "committer_name": "whale",
  277. "committer_email": "1466978121@qq.com",
  278. "projectId": 738
  279. },
  280. {
  281. "id": "dc73b352ffc3bc503e9954442c1f90bf0a78a178",
  282. "message": "fix: fix #171#, 点击更改任务状态无效的bug已解决\n",
  283. "committer_name": "whale",
  284. "committer_email": "1466978121@qq.com",
  285. "projectId": 738
  286. }
  287. ],
  288. "4": [
  289. {
  290. "id": "6f8e55b2b922a5b7da04808ca70a084c229a46e3",
  291. "message": "12\n",
  292. "committer_name": "zhang07076",
  293. "committer_email": "994820920@qq.com",
  294. "projectId": 667
  295. },
  296. {
  297. "id": "2038de9bffc0d9e688e14d7a3a6df146688d8eeb",
  298. "message": "12\n",
  299. "committer_name": "zhang07076",
  300. "committer_email": "994820920@qq.com",
  301. "projectId": 667
  302. },
  303. {
  304. "id": "f7148fac3edac98ad3ead61610c163e524df2b13",
  305. "message": "feat: working on #2298#, 数据库初始工作完成\n",
  306. "committer_name": "zhang07076",
  307. "committer_email": "994820920@qq.com",
  308. "projectId": 666
  309. },
  310. {
  311. "id": "dea137cd8a14ce8bd5f87f36316abe2315572694",
  312. "message": "feat: working on #2298#, 数据库初始工作完成\n",
  313. "committer_name": "zhang07076",
  314. "committer_email": "994820920@qq.com",
  315. "projectId": 666
  316. },
  317. {
  318. "id": "80fde3a426ba2f4da185537d140bdabf03bc5519",
  319. "message": "feat: working on #2298#, 数据库初始工作完成\n",
  320. "committer_name": "zhang07076",
  321. "committer_email": "994820920@qq.com",
  322. "projectId": 666
  323. },
  324. {
  325. "id": "3aa496d9e8b75bfbcec700f4181914dbb02e9e8a",
  326. "message": "12\n",
  327. "committer_name": "zhang07076",
  328. "committer_email": "994820920@qq.com",
  329. "projectId": 666
  330. },
  331. {
  332. "id": "1cb59db2bf3ade51f47386c5b6541577297fb56d",
  333. "message": "123\n",
  334. "committer_name": "zhang07076",
  335. "committer_email": "994820920@qq.com",
  336. "projectId": 666
  337. },
  338. {
  339. "id": "3529994e4c9504bd701e6bdac03d0caa04d7a67b",
  340. "message": "123\n",
  341. "committer_name": "zhang07076",
  342. "committer_email": "994820920@qq.com",
  343. "projectId": 666
  344. },
  345. {
  346. "id": "9277a48061bff5380fb51e7bfe88409f6c5d485b",
  347. "message": "12\n",
  348. "committer_name": "zhang07076",
  349. "committer_email": "994820920@qq.com",
  350. "projectId": 666
  351. },
  352. {
  353. "id": "9a757331a1d2f01a25ddcfceb4bbec7e1c786a28",
  354. "message": "12\n",
  355. "committer_name": "zhang07076",
  356. "committer_email": "994820920@qq.com",
  357. "projectId": 666
  358. },
  359. {
  360. "id": "a984aa46f2cf0e84f53b172e9229db91d25132ce",
  361. "message": "12\n",
  362. "committer_name": "zhang07076",
  363. "committer_email": "994820920@qq.com",
  364. "projectId": 666
  365. },
  366. {
  367. "id": "14fa0779c43c0d82dfbc6d5d35a3cb478e9fe690",
  368. "message": "12\n",
  369. "committer_name": "zhang07076",
  370. "committer_email": "994820920@qq.com",
  371. "projectId": 666
  372. },
  373. {
  374. "id": "0c4a164de32a28b4236571166d8b277a1cb48493",
  375. "message": "12\n",
  376. "committer_name": "zhang07076",
  377. "committer_email": "994820920@qq.com",
  378. "projectId": 666
  379. },
  380. {
  381. "id": "c2056d62d1be6a351e3051a87ded0fcba7cf233a",
  382. "message": "12\n",
  383. "committer_name": "zhang07076",
  384. "committer_email": "994820920@qq.com",
  385. "projectId": 666
  386. },
  387. {
  388. "id": "b46678e5bf88dfa2622e12d842b67172a4d3b0ae",
  389. "message": "12\n",
  390. "committer_name": "zhang07076",
  391. "committer_email": "994820920@qq.com",
  392. "projectId": 666
  393. },
  394. {
  395. "id": "779f87a82f856d2a79f9b8ef2fabc1f4c5ab6706",
  396. "message": "12\n",
  397. "committer_name": "zhang07076",
  398. "committer_email": "994820920@qq.com",
  399. "projectId": 666
  400. },
  401. {
  402. "id": "1b308549a22f33ef70f755ad0ab67c440cc5de66",
  403. "message": "feat: working on #2299#, 数据库初始工作完成\n",
  404. "committer_name": "zhang07076",
  405. "committer_email": "994820920@qq.com",
  406. "projectId": 666
  407. },
  408. {
  409. "id": "df450a20192c76d53b90d7bcb25976efbead0ec9",
  410. "message": "feat: working on #2287#, 添加新任务已完成\n",
  411. "committer_name": "zhang07076",
  412. "committer_email": "994820920@qq.com",
  413. "projectId": 666
  414. },
  415. {
  416. "id": "bf4a9641fb146e638744a6da320acea34e6246a9",
  417. "message": "feat: working on #2287#, 添加新任务已完成\n",
  418. "committer_name": "zhang07076",
  419. "committer_email": "994820920@qq.com",
  420. "projectId": 666
  421. },
  422. {
  423. "id": "2a44ca71f2cb049d1ca13e915e51e3fd36fd6a51",
  424. "message": "feat: working on #2287#, 添加新任务已完成\n",
  425. "committer_name": "zhang07076",
  426. "committer_email": "994820920@qq.com",
  427. "projectId": 666
  428. },
  429. {
  430. "id": "f5b5b27989b54e5b80534e989a0fab683eb4a16f",
  431. "message": "feat: working on #2287#, 添加新任务已完成\n",
  432. "committer_name": "zhang07076",
  433. "committer_email": "994820920@qq.com",
  434. "projectId": 666
  435. },
  436. {
  437. "id": "4b601f82c3d9d96ad0a8e001482a05e341f6e48b",
  438. "message": "feat: working on #2287#, 添加新任务已完成\n",
  439. "committer_name": "zhang07076",
  440. "committer_email": "994820920@qq.com",
  441. "projectId": 666
  442. }
  443. ],
  444. "5": [
  445. {
  446. "id": "429cf10ef28c379ea9c38d6e29b7b1723025ad93",
  447. "message": "feat: working on #2412#, 删除时有消息提示\n",
  448. "committer_name": "litdawn",
  449. "committer_email": "72733106+litdawn@users.noreply.github.com",
  450. "projectId": 869
  451. },
  452. {
  453. "id": "b38e7c1e917fbf73d96ab32dbdd95d81ce125fd0",
  454. "message": "feat: working on #2412#, 删除时有消息提示\n",
  455. "committer_name": "litdawn",
  456. "committer_email": "72733106+litdawn@users.noreply.github.com",
  457. "projectId": 869
  458. },
  459. {
  460. "id": "3969478fb986bd5f641dd9a0eb560fbfda7b905d",
  461. "message": "feat: working on #2412#, 删除时有消息提示\n",
  462. "committer_name": "litdawn",
  463. "committer_email": "72733106+litdawn@users.noreply.github.com",
  464. "projectId": 869
  465. },
  466. {
  467. "id": "fad00b55fd7798a1bdf0dcd1c23b50ff39e78ccb",
  468. "message": "try\n",
  469. "committer_name": "201250054",
  470. "committer_email": "943270225@qq.com",
  471. "projectId": 869
  472. },
  473. {
  474. "id": "d7b7c1326c71ef19fe305cf3d360a66d169a6f31",
  475. "message": "try\n",
  476. "committer_name": "201250054",
  477. "committer_email": "943270225@qq.com",
  478. "projectId": 869
  479. },
  480. {
  481. "id": "c9504e99e4ba8b0c2b9e310bf835a56f66f33fac",
  482. "message": "try\n",
  483. "committer_name": "201250054",
  484. "committer_email": "943270225@qq.com",
  485. "projectId": 869
  486. },
  487. {
  488. "id": "3fbedddd43dd06f424c9bc651d95917143753f52",
  489. "message": "try\n",
  490. "committer_name": "201250054",
  491. "committer_email": "943270225@qq.com",
  492. "projectId": 869
  493. },
  494. {
  495. "id": "ada4f18606c4071a9c930c70622ce5fe7f1789ad",
  496. "message": "try\n",
  497. "committer_name": "201250054",
  498. "committer_email": "943270225@qq.com",
  499. "projectId": 869
  500. },
  501. {
  502. "id": "8a6e28d9f0ea43ee7b236a70818bdf5f6ba6450e",
  503. "message": "try\n",
  504. "committer_name": "201250054",
  505. "committer_email": "943270225@qq.com",
  506. "projectId": 869
  507. },
  508. {
  509. "id": "a4b08a097060e05af9116bd331296d9de504a2ec",
  510. "message": "try\n",
  511. "committer_name": "201250054",
  512. "committer_email": "943270225@qq.com",
  513. "projectId": 869
  514. },
  515. {
  516. "id": "cce6bd6ac6e02cbf9c251ac3d04e9b72d124f4dc",
  517. "message": "try\n",
  518. "committer_name": "201250054",
  519. "committer_email": "943270225@qq.com",
  520. "projectId": 869
  521. },
  522. {
  523. "id": "93381947c5c71c7bf86e9a1d1f2de059a21fd728",
  524. "message": "try\n",
  525. "committer_name": "201250054",
  526. "committer_email": "943270225@qq.com",
  527. "projectId": 869
  528. },
  529. {
  530. "id": "9d8aef8770c70a97a710ba0dba5f69dc81155aed",
  531. "message": "try\n",
  532. "committer_name": "201250054",
  533. "committer_email": "943270225@qq.com",
  534. "projectId": 869
  535. },
  536. {
  537. "id": "c7bc3a4ddb06a5cfbd9f032ce539bd6c6993930d",
  538. "message": "try\n",
  539. "committer_name": "201250054",
  540. "committer_email": "943270225@qq.com",
  541. "projectId": 869
  542. },
  543. {
  544. "id": "a089b59342ac2209c761d8d617927f70914b4b90",
  545. "message": "feat: working on #2514#, 成员信息\n",
  546. "committer_name": "litdawn",
  547. "committer_email": "72733106+litdawn@users.noreply.github.com",
  548. "projectId": 869
  549. },
  550. {
  551. "id": "f89bd07d591de1a0aac5085c4975d8932134d96d",
  552. "message": "Merge remote-tracking branch 'origin/master'\n",
  553. "committer_name": "litdawn",
  554. "committer_email": "72733106+litdawn@users.noreply.github.com",
  555. "projectId": 869
  556. },
  557. {
  558. "id": "4e73e8a3d5d5877b7795cea3b4449e361438760d",
  559. "message": "feat: working on #2514#, 成员信息\n",
  560. "committer_name": "litdawn",
  561. "committer_email": "72733106+litdawn@users.noreply.github.com",
  562. "projectId": 869
  563. },
  564. {
  565. "id": "cdcc79f0814a4e81982d567a6751866ae4666081",
  566. "message": "feat: working on #2514#, 成员信息\n",
  567. "committer_name": "litdawn",
  568. "committer_email": "72733106+litdawn@users.noreply.github.com",
  569. "projectId": 869
  570. },
  571. {
  572. "id": "256463b4d1baafa599d5b8fcbaf9071e2a8e0ff2",
  573. "message": "fix: fixing on #183#, 成员信息\n",
  574. "committer_name": "litdawn",
  575. "committer_email": "72733106+litdawn@users.noreply.github.com",
  576. "projectId": 869
  577. },
  578. {
  579. "id": "138089d4e46033d72fd611712fd7f7321513965e",
  580. "message": "fix: fixing on #183#,更新状态\n",
  581. "committer_name": "litdawn",
  582. "committer_email": "72733106+litdawn@users.noreply.github.com",
  583. "projectId": 869
  584. },
  585. {
  586. "id": "2a613dda5c73a4f29c53b54c81c7588eefd52c2e",
  587. "message": "init:项目初始化\n",
  588. "committer_name": "201250054",
  589. "committer_email": "943270225@qq.com",
  590. "projectId": 868
  591. },
  592. {
  593. "id": "7e0c0dbac85ddab1b398eabbdde864f32aba1a5e",
  594. "message": "将后端代码连接的mysql配置与线上保持⼀致\n",
  595. "committer_name": "201250054",
  596. "committer_email": "943270225@qq.com",
  597. "projectId": 868
  598. },
  599. {
  600. "id": "b92642477a3472f3e63910be18dd85235a19e177",
  601. "message": "更新任务状态\n",
  602. "committer_name": "litdawn",
  603. "committer_email": "72733106+litdawn@users.noreply.github.com",
  604. "projectId": 868
  605. },
  606. {
  607. "id": "cb6166d13702d4f9d291efe3b47be6a64ec118fb",
  608. "message": "更新任务状态\n",
  609. "committer_name": "litdawn",
  610. "committer_email": "72733106+litdawn@users.noreply.github.com",
  611. "projectId": 868
  612. },
  613. {
  614. "id": "e9738a2371c4b2fd5d77e26b45a894a4f150215e",
  615. "message": "feat: working on #2275#, 添加新任务service完成\n",
  616. "committer_name": "litdawn",
  617. "committer_email": "72733106+litdawn@users.noreply.github.com",
  618. "projectId": 868
  619. },
  620. {
  621. "id": "62c3bdadb4c159f4b15bdaa5129d9ec8e6e12697",
  622. "message": "feat: working on #2275#, 更新完成状态\n",
  623. "committer_name": "litdawn",
  624. "committer_email": "72733106+litdawn@users.noreply.github.com",
  625. "projectId": 868
  626. },
  627. {
  628. "id": "0f963a0b547cdc5b38b4376447804ff4d295dab3",
  629. "message": "feat: working on #2275#, 更新完成状态\n",
  630. "committer_name": "litdawn",
  631. "committer_email": "72733106+litdawn@users.noreply.github.com",
  632. "projectId": 868
  633. },
  634. {
  635. "id": "da265471da3d38d342570b3811737e8acf538e9e",
  636. "message": "feat: working on #2275#, 更新完成状态\n",
  637. "committer_name": "litdawn",
  638. "committer_email": "72733106+litdawn@users.noreply.github.com",
  639. "projectId": 868
  640. },
  641. {
  642. "id": "38ffc737c3fa102b36d0540258cd934994bf1022",
  643. "message": "try\n",
  644. "committer_name": "201250054",
  645. "committer_email": "943270225@qq.com",
  646. "projectId": 868
  647. },
  648. {
  649. "id": "60486ad0cc549e4f9a8814aa2cdbd5e79e042085",
  650. "message": "try\n",
  651. "committer_name": "201250054",
  652. "committer_email": "943270225@qq.com",
  653. "projectId": 868
  654. },
  655. {
  656. "id": "b7e6eeecb1df7e3830ad2920758182de92e2cc73",
  657. "message": "try\n",
  658. "committer_name": "201250054",
  659. "committer_email": "943270225@qq.com",
  660. "projectId": 868
  661. },
  662. {
  663. "id": "f7dfbbc062d3945b4447dce89f9bf295be212845",
  664. "message": "try\n",
  665. "committer_name": "201250054",
  666. "committer_email": "943270225@qq.com",
  667. "projectId": 868
  668. },
  669. {
  670. "id": "18553449aa4af3b587416c727615f90c46d2bee7",
  671. "message": "try\n",
  672. "committer_name": "201250054",
  673. "committer_email": "943270225@qq.com",
  674. "projectId": 868
  675. },
  676. {
  677. "id": "09d0dda7ae9b44571611a6985a219435f73cbcef",
  678. "message": "try\n",
  679. "committer_name": "201250054",
  680. "committer_email": "943270225@qq.com",
  681. "projectId": 868
  682. }
  683. ],
  684. "6": [
  685. {
  686. "id": "6548c8e96a9c0ba6ef4383d7ffe9b11efc5de3f8",
  687. "message": "init\n",
  688. "committer_name": "Martin77",
  689. "committer_email": "1754350460@qq.com",
  690. "projectId": 736
  691. },
  692. {
  693. "id": "1820bface9e18977a480005b904aa974e949cbb6",
  694. "message": "fix: fix #201#, 可以提交空title的bug已解决\n",
  695. "committer_name": "2020-qqtcg",
  696. "committer_email": "1921761583@qq.com",
  697. "projectId": 736
  698. },
  699. {
  700. "id": "086f0d455b28bf4e44b8ccfdc5c5e3bac99730dd",
  701. "message": "Update Header.vue\n",
  702. "committer_name": "2020-qqtcg",
  703. "committer_email": "1921761583@qq.com",
  704. "projectId": 736
  705. },
  706. {
  707. "id": "42afde5da1f395c8e5c1c9d5e98233c4ebfe51dc",
  708. "message": "Update Header.vue\n",
  709. "committer_name": "2020-qqtcg",
  710. "committer_email": "1921761583@qq.com",
  711. "projectId": 736
  712. },
  713. {
  714. "id": "5ba4425f353907eb1454430f8e13ff7134e4c7df",
  715. "message": "feat: complete #2446#, 添加表格\n",
  716. "committer_name": "201250154",
  717. "committer_email": "Cyr607716",
  718. "projectId": 736
  719. },
  720. {
  721. "id": "6621118829980070f8787f15ae43d683c798087d",
  722. "message": "添加前端作业文档\n",
  723. "committer_name": "泰豪 张",
  724. "committer_email": "201250164@smail.nju.edu.cn",
  725. "projectId": 736
  726. },
  727. {
  728. "id": "30771fe4aa71b8b51c0f18edbca87f70b8c3ae6d",
  729. "message": "Merge branch 'master' of http://seecoder-gitlab-gitlab.seec.seecoder.cn/201250182/lab-one-frontend\n",
  730. "committer_name": "泰豪 张",
  731. "committer_email": "201250164@smail.nju.edu.cn",
  732. "projectId": 736
  733. },
  734. {
  735. "id": "66855dedd9891876e2e524262d59a408aad258c2",
  736. "message": "doc:update hw file\n",
  737. "committer_name": "Martin77",
  738. "committer_email": "1754350460@qq.com",
  739. "projectId": 736
  740. },
  741. {
  742. "id": "a1322f1b3650bec990d57a77e89e5b540b9f696f",
  743. "message": "Update Item.vue\n",
  744. "committer_name": "2020-qqtcg",
  745. "committer_email": "1921761583@qq.com",
  746. "projectId": 736
  747. },
  748. {
  749. "id": "66a008350f54f0d7278d537b640a888edd66f783",
  750. "message": "Update 软工2第一次作业.md\n",
  751. "committer_name": "泰豪 张",
  752. "committer_email": "201250164@smail.nju.edu.cn",
  753. "projectId": 736
  754. },
  755. {
  756. "id": "b68a7634fd52937e0a9705ae83a33c1c546aed9b",
  757. "message": "fix: fix #185#, 解决状态更新问题\n",
  758. "committer_name": "201250154",
  759. "committer_email": "Cyr607716",
  760. "projectId": 736
  761. },
  762. {
  763. "id": "abfea6f7b6dc96a3d9758ed2e67283fc6a81b35b",
  764. "message": "1\n",
  765. "committer_name": "201250154",
  766. "committer_email": "Cyr607716",
  767. "projectId": 736
  768. },
  769. {
  770. "id": "150d2e821f6edba856e73655b0bc003a2a46e09a",
  771. "message": "node-sass\n",
  772. "committer_name": "201250154",
  773. "committer_email": "Cyr607716",
  774. "projectId": 736
  775. },
  776. {
  777. "id": "e97c3bb89a8173ba2da88ceb7e5b581dd1954c1a",
  778. "message": "node-sass\n",
  779. "committer_name": "201250154",
  780. "committer_email": "Cyr607716",
  781. "projectId": 736
  782. },
  783. {
  784. "id": "5e4976b526bee314d9bd43c5188a1455caeef81a",
  785. "message": "文档\n",
  786. "committer_name": "201250154",
  787. "committer_email": "Cyr607716",
  788. "projectId": 736
  789. },
  790. {
  791. "id": "9912b9307306ec4ad8b0fe8d32c99d4c0b90fdad",
  792. "message": "Update Header.vue\n",
  793. "committer_name": "2020-qqtcg",
  794. "committer_email": "1921761583@qq.com",
  795. "projectId": 736
  796. },
  797. {
  798. "id": "52e46fa4a091bb842e7daf996e3d549919ddcfaf",
  799. "message": "Merge branch 'master' of http://seecoder-gitlab-gitlab.seec.seecoder.cn/201250182/lab-one-frontend\n",
  800. "committer_name": "2020-qqtcg",
  801. "committer_email": "1921761583@qq.com",
  802. "projectId": 736
  803. },
  804. {
  805. "id": "ae24c88c681301102766357c5f2969eac114d9e4",
  806. "message": "node-sass\n",
  807. "committer_name": "201250154",
  808. "committer_email": "Cyr607716",
  809. "projectId": 736
  810. },
  811. {
  812. "id": "fbe166edd6b46802b1b31163afd2d0716c25a1ef",
  813. "message": "Merge remote-tracking branch 'origin/master'\n",
  814. "committer_name": "201250154",
  815. "committer_email": "Cyr607716",
  816. "projectId": 736
  817. },
  818. {
  819. "id": "d1dd0ed74706da85f36daaf5fee62a9ff31ad2f7",
  820. "message": "init\n",
  821. "committer_name": "Martin77",
  822. "committer_email": "1754350460@qq.com",
  823. "projectId": 734
  824. },
  825. {
  826. "id": "10d681154f17dc9d8c91cee5227bc24be629d157",
  827. "message": "change dependency\n",
  828. "committer_name": "Martin77",
  829. "committer_email": "1754350460@qq.com",
  830. "projectId": 734
  831. },
  832. {
  833. "id": "7161abdea4369db7f1b6eda18c6b3d164ba8c422",
  834. "message": "dev:add database\n",
  835. "committer_name": "Martin77",
  836. "committer_email": "1754350460@qq.com",
  837. "projectId": 734
  838. },
  839. {
  840. "id": "7bd753a163b5054cac4d48a3917196cf91b6e829",
  841. "message": "dev:package\n",
  842. "committer_name": "Martin77",
  843. "committer_email": "1754350460@qq.com",
  844. "projectId": 734
  845. },
  846. {
  847. "id": "f780a48cee60244f2b34d8ca22da02b93eb0129d",
  848. "message": "fix:working on #2320, 修复了TaskMapper.xml\n",
  849. "committer_name": "Martin77",
  850. "committer_email": "1754350460@qq.com",
  851. "projectId": 734
  852. },
  853. {
  854. "id": "7af4f507764990bf9858ce1ea24b129648560c78",
  855. "message": "fix: fix #185#, 无法更新todolist的bug已解决\n",
  856. "committer_name": "泰豪 张",
  857. "committer_email": "201250164@smail.nju.edu.cn",
  858. "projectId": 734
  859. },
  860. {
  861. "id": "b48e4a0388ff6ceec49861ea1965aae39c16b11e",
  862. "message": "fix:fixing on bug\n",
  863. "committer_name": "Martin77",
  864. "committer_email": "1754350460@qq.com",
  865. "projectId": 734
  866. },
  867. {
  868. "id": "251f7bc73b0dd3de8debfe32fa4b6c2de5c16591",
  869. "message": "add some test\n",
  870. "committer_name": "Martin77",
  871. "committer_email": "1754350460@qq.com",
  872. "projectId": 734
  873. },
  874. {
  875. "id": "dbb1f3b1fc56e4282c263494e6ac8045c749b906",
  876. "message": "try fix bug\n",
  877. "committer_name": "泰豪 张",
  878. "committer_email": "201250164@smail.nju.edu.cn",
  879. "projectId": 734
  880. },
  881. {
  882. "id": "a28a177cdefb7dcd93dc29fd85795fdb94d2746b",
  883. "message": "Merge branch 'master' of http://seecoder-gitlab-gitlab.seec.seecoder.cn/201250182/lab-one-backend\n",
  884. "committer_name": "泰豪 张",
  885. "committer_email": "201250164@smail.nju.edu.cn",
  886. "projectId": 734
  887. },
  888. {
  889. "id": "39675555dd4299ed7adbf51d4edb7c4b9dfb98d2",
  890. "message": "撤销更改\n",
  891. "committer_name": "泰豪 张",
  892. "committer_email": "201250164@smail.nju.edu.cn",
  893. "projectId": 734
  894. }
  895. ],
  896. "7": [
  897. {
  898. "id": "c3d0ca08dade8267733a192b05ff0173cd07b63c",
  899. "message": "init\n",
  900. "committer_name": "Lqf-HFNJU",
  901. "committer_email": "201830168@smail.nju.edu.cn",
  902. "projectId": 893
  903. },
  904. {
  905. "id": "cb771f4a5b9ced878e110ea9a3a932c3ca79e34b",
  906. "message": "rename jarPackage\n",
  907. "committer_name": "Lqf-HFNJU",
  908. "committer_email": "201830168@smail.nju.edu.cn",
  909. "projectId": 893
  910. },
  911. {
  912. "id": "040bb83f5f8fca3353126e17cebcd099d0036b86",
  913. "message": "skip test\n",
  914. "committer_name": "Lqf-HFNJU",
  915. "committer_email": "201830168@smail.nju.edu.cn",
  916. "projectId": 893
  917. },
  918. {
  919. "id": "788c44aa2a34fd795e10f4f27da818de2db03c7a",
  920. "message": "rename jar package\n",
  921. "committer_name": "Lqf-HFNJU",
  922. "committer_email": "201830168@smail.nju.edu.cn",
  923. "projectId": 893
  924. },
  925. {
  926. "id": "c0484e528fe9675754c0b4df78d0a9ab5567a99e",
  927. "message": "fix bug\n",
  928. "committer_name": "Lqf-HFNJU",
  929. "committer_email": "201830168@smail.nju.edu.cn",
  930. "projectId": 893
  931. },
  932. {
  933. "id": "45ff37d5daf92210432d76096ebc85bc8237d9e2",
  934. "message": "..\n",
  935. "committer_name": "Lqf-HFNJU",
  936. "committer_email": "201830168@smail.nju.edu.cn",
  937. "projectId": 893
  938. },
  939. {
  940. "id": "6d2e72219bda561de8c278c0326ce9e8c7d48761",
  941. "message": "init\n",
  942. "committer_name": "84368",
  943. "committer_email": "843683531@qq.com",
  944. "projectId": 766
  945. },
  946. {
  947. "id": "862fec052a29ac230e8d657b947bd43b16377233",
  948. "message": "init\n",
  949. "committer_name": "84368",
  950. "committer_email": "843683531@qq.com",
  951. "projectId": 766
  952. },
  953. {
  954. "id": "d90a6dd105e45941d569257a39fae4a1b27ecada",
  955. "message": "fix: fix#192#, 输入为空的问题已修复\n",
  956. "committer_name": "84368",
  957. "committer_email": "843683531@qq.com",
  958. "projectId": 766
  959. },
  960. {
  961. "id": "c889f0cfeb7f48cca33b03257fd634e9d3aef63b",
  962. "message": "changed\n",
  963. "committer_name": "84368",
  964. "committer_email": "843683531@qq.com",
  965. "projectId": 766
  966. },
  967. {
  968. "id": "18e406d20737c5d3b4341001f5a73a0ab8a3b005",
  969. "message": "table\n",
  970. "committer_name": "84368",
  971. "committer_email": "843683531@qq.com",
  972. "projectId": 766
  973. },
  974. {
  975. "id": "ca23385a0aef2f292d83ba65ec66c54c3cb3d4bf",
  976. "message": "s\n",
  977. "committer_name": "84368",
  978. "committer_email": "843683531@qq.com",
  979. "projectId": 766
  980. },
  981. {
  982. "id": "360695d337f3b700d1fd6de7b44bcc06f42b8dfc",
  983. "message": "test\n",
  984. "committer_name": "84368",
  985. "committer_email": "843683531@qq.com",
  986. "projectId": 436
  987. },
  988. {
  989. "id": "9ea2d2b15ae5591bea03cb34e2df685d74e78ed6",
  990. "message": "feat: working on #1846#\n",
  991. "committer_name": "84368",
  992. "committer_email": "843683531@qq.com",
  993. "projectId": 436
  994. },
  995. {
  996. "id": "6985305f35968ede5f824fcea5a8c765a02b1e08",
  997. "message": "init\n",
  998. "committer_name": "Mashrio",
  999. "committer_email": "1109815290@qq.com",
  1000. "projectId": 436
  1001. }
  1002. ],
  1003. "8": [
  1004. {
  1005. "id": "b5561fd6d95438c1b9c7937223964bf96c530615",
  1006. "message": "init: 后端初始化\n",
  1007. "committer_name": "unknown",
  1008. "committer_email": "3243658010@qq,com",
  1009. "projectId": 789
  1010. },
  1011. {
  1012. "id": "51eb0fd35f66dffde8bc559d80fac87308a5f8e4",
  1013. "message": "init: 前端项目初始化\n",
  1014. "committer_name": "unknown",
  1015. "committer_email": "3243658010@qq,com",
  1016. "projectId": 788
  1017. }
  1018. ],
  1019. "9": [
  1020. {
  1021. "id": "0e668575eaeca9ca2e4512493fdfb2dd98580cc0",
  1022. "message": "init: 椤光浆鍒濆鍖?\n",
  1023. "committer_name": "201250038",
  1024. "committer_email": "201250038@smail.nju.edu.cn",
  1025. "projectId": 742
  1026. },
  1027. {
  1028. "id": "780baa0a465d3646e629438d81b1aaa339ec42e5",
  1029. "message": "init: 项⽬初始化\n",
  1030. "committer_name": "201250038",
  1031. "committer_email": "201250038@smail.nju.edu.cn",
  1032. "projectId": 742
  1033. },
  1034. {
  1035. "id": "91c17f0d86a942f8d4042993b7d32b70490bb95a",
  1036. "message": "fix#125#,提交空title的bug已解决\n",
  1037. "committer_name": "201250038",
  1038. "committer_email": "201250038@smail.nju.edu.cn",
  1039. "projectId": 742
  1040. },
  1041. {
  1042. "id": "dd8f803e9dd9dc2294c12d9cca636b2c0093fe08",
  1043. "message": "fix: fix #125#, 提交空title的bug已解决\n",
  1044. "committer_name": "201250038",
  1045. "committer_email": "201250038@smail.nju.edu.cn",
  1046. "projectId": 742
  1047. },
  1048. {
  1049. "id": "ed781bcc21f9f4528b1a47bb27d7c1e4f6b4b0c9",
  1050. "message": "fix: fix #125#, 提交空title的bug已解决\n",
  1051. "committer_name": "201250038",
  1052. "committer_email": "201250038@smail.nju.edu.cn",
  1053. "projectId": 742
  1054. },
  1055. {
  1056. "id": "32ed12aea0424dd32647a23ca8a93c497edfec87",
  1057. "message": "feat: add members info",
  1058. "committer_name": "201250038",
  1059. "committer_email": "2930427944@qq.com",
  1060. "projectId": 742
  1061. },
  1062. {
  1063. "id": "823a33ba7648a25fb9961f987d257403cba89c7a",
  1064. "message": "fix: fix #154#, 输入空格可以作为title添加的bug已解决",
  1065. "committer_name": "201250038",
  1066. "committer_email": "2930427944@qq.com",
  1067. "projectId": 742
  1068. },
  1069. {
  1070. "id": "53454df020769ffa81dfa11445fe55885724e31b",
  1071. "message": "fix: fix #153#, 修复无法更新任务\n状态的bug\n",
  1072. "committer_name": "201250038",
  1073. "committer_email": "201250038@smail.nju.edu.cn",
  1074. "projectId": 742
  1075. },
  1076. {
  1077. "id": "3a8cedf556951a9129bd9c938ead9f70c22237e3",
  1078. "message": "init: 椤光浆鍒濆鍖?\n",
  1079. "committer_name": "201250038",
  1080. "committer_email": "201250038@smail.nju.edu.cn",
  1081. "projectId": 741
  1082. },
  1083. {
  1084. "id": "14a952fe13c2a47c626cf40abc20d60711834506",
  1085. "message": "init: 项⽬初始化\n",
  1086. "committer_name": "201250038",
  1087. "committer_email": "201250038@smail.nju.edu.cn",
  1088. "projectId": 741
  1089. },
  1090. {
  1091. "id": "396e0d5b4afa533cdd3be1b0638f55b521821a1f",
  1092. "message": "backendOver\n",
  1093. "committer_name": "Bobby-Han",
  1094. "committer_email": "1667827813@qq.com",
  1095. "projectId": 741
  1096. },
  1097. {
  1098. "id": "aa6a5a4b67d5aa8b633e81c55c5e54852102ad99",
  1099. "message": "feat: complete #1918#, 完成获取所有任务功能\n",
  1100. "committer_name": "Bobby-Han",
  1101. "committer_email": "1667827813@qq.com",
  1102. "projectId": 741
  1103. },
  1104. {
  1105. "id": "505f6e19c366c97556da129f59db9c7bb72d0bf2",
  1106. "message": "init: 修改 application.yml 中的数据库地址及密码\n",
  1107. "committer_name": "HC_Plantern",
  1108. "committer_email": "1345010966@qq.com",
  1109. "projectId": 741
  1110. },
  1111. {
  1112. "id": "39cceb3f73a50cd2ea763a22202dca04ce5b300b",
  1113. "message": "Merge remote-tracking branch 'origin/master'\n",
  1114. "committer_name": "HC_Plantern",
  1115. "committer_email": "1345010966@qq.com",
  1116. "projectId": 741
  1117. },
  1118. {
  1119. "id": "18b38d837f7fdb71026c3e9b9f5336f7821884d2",
  1120. "message": "feat: complete #1920#, 删除任务相关代码完成\n",
  1121. "committer_name": "HC_Plantern",
  1122. "committer_email": "1345010966@qq.com",
  1123. "projectId": 741
  1124. },
  1125. {
  1126. "id": "c5f3e31fcd236913e232c3792873575839a4d1bb",
  1127. "message": "feat: complete #1918#, 完成获取所有任务功能1\n",
  1128. "committer_name": "Bobby-Han",
  1129. "committer_email": "1667827813@qq.com",
  1130. "projectId": 741
  1131. }
  1132. ],
  1133. "10": [
  1134. {
  1135. "id": "26900ec83c32006a89da5dd488a55b7e3fb8fd04",
  1136. "message": "init 初始化\n",
  1137. "committer_name": "Mzk",
  1138. "committer_email": "166831061@qq.com",
  1139. "projectId": 686
  1140. },
  1141. {
  1142. "id": "e91895a270d10b9346db39afc4e58f06e246f41a",
  1143. "message": "fix: fix#139#\n",
  1144. "committer_name": "pjy001",
  1145. "committer_email": "895971165@qq.com",
  1146. "projectId": 686
  1147. },
  1148. {
  1149. "id": "137404f262c854c9fcbf36f9b389fed5ac03393a",
  1150. "message": "fix\n",
  1151. "committer_name": "pjy001",
  1152. "committer_email": "895971165@qq.com",
  1153. "projectId": 686
  1154. },
  1155. {
  1156. "id": "38cc22634da231d4dc1286d6a335c06baff473e7",
  1157. "message": "fix: fix #177#\n",
  1158. "committer_name": "pjy001",
  1159. "committer_email": "895971165@qq.com",
  1160. "projectId": 686
  1161. },
  1162. {
  1163. "id": "3380bc104cbf8ac9ecfe2cd527d968a97f42a053",
  1164. "message": "fix: fix#178#\n",
  1165. "committer_name": "pjy001",
  1166. "committer_email": "895971165@qq.com",
  1167. "projectId": 686
  1168. },
  1169. {
  1170. "id": "7d3c713a1fc1a405b9f6f3d04f031689cefc1d0c",
  1171. "message": "fix: fix#178#\n",
  1172. "committer_name": "pjy001",
  1173. "committer_email": "895971165@qq.com",
  1174. "projectId": 686
  1175. },
  1176. {
  1177. "id": "fc7ce4f87999619069109d77e9572ceb9bb5c108",
  1178. "message": "fix: fix#180#\n",
  1179. "committer_name": "pjy001",
  1180. "committer_email": "895971165@qq.com",
  1181. "projectId": 686
  1182. },
  1183. {
  1184. "id": "1aea0a47ab6b7b984d3510be17b93a771de41c13",
  1185. "message": "fix:fix#181#\n",
  1186. "committer_name": "pjy001",
  1187. "committer_email": "895971165@qq.com",
  1188. "projectId": 686
  1189. },
  1190. {
  1191. "id": "7e9ac3ccfa1a722f777210d3c3cbbdd1d095d8d1",
  1192. "message": "fix:fix#181#\n",
  1193. "committer_name": "pjy001",
  1194. "committer_email": "895971165@qq.com",
  1195. "projectId": 686
  1196. },
  1197. {
  1198. "id": "41f75bd363762c32422ba40ad239bb55ac5fd7f8",
  1199. "message": "fix:fix#182#\n",
  1200. "committer_name": "pjy001",
  1201. "committer_email": "895971165@qq.com",
  1202. "projectId": 686
  1203. },
  1204. {
  1205. "id": "a59322dd61c7063664f6cb5813229c3a6746f0e9",
  1206. "message": "fix:fix#182#\n",
  1207. "committer_name": "pjy001",
  1208. "committer_email": "895971165@qq.com",
  1209. "projectId": 686
  1210. },
  1211. {
  1212. "id": "2b9a55e3ca5cbe97635e158d55fd8038551170d0",
  1213. "message": "fix:fix#182#\n",
  1214. "committer_name": "pjy001",
  1215. "committer_email": "895971165@qq.com",
  1216. "projectId": 686
  1217. },
  1218. {
  1219. "id": "0efa513052b8f6d38302bb8c591c123cdf5ebb61",
  1220. "message": "add table\n",
  1221. "committer_name": "Mzk",
  1222. "committer_email": "166831061@qq.com",
  1223. "projectId": 686
  1224. },
  1225. {
  1226. "id": "a816696b1c0689dccfe9b4e3fec37d4509c5b33c",
  1227. "message": "1\n",
  1228. "committer_name": "Mzk",
  1229. "committer_email": "166831061@qq.com",
  1230. "projectId": 686
  1231. },
  1232. {
  1233. "id": "655167020bf838cf9ae95c94288668b36d45458d",
  1234. "message": "2\n",
  1235. "committer_name": "Mzk",
  1236. "committer_email": "166831061@qq.com",
  1237. "projectId": 686
  1238. },
  1239. {
  1240. "id": "2760f47b9aa35cf2a21c71e8ecf4023ebd049a41",
  1241. "message": "3\n",
  1242. "committer_name": "Mzk",
  1243. "committer_email": "166831061@qq.com",
  1244. "projectId": 686
  1245. },
  1246. {
  1247. "id": "00b152ad59f81c1f330fe4acba78d79d638f97d5",
  1248. "message": "4\n",
  1249. "committer_name": "Mzk",
  1250. "committer_email": "166831061@qq.com",
  1251. "projectId": 686
  1252. },
  1253. {
  1254. "id": "a83ff5236afb6d44f6b8b68ad91b51ed3e837670",
  1255. "message": "5\n",
  1256. "committer_name": "Mzk",
  1257. "committer_email": "166831061@qq.com",
  1258. "projectId": 686
  1259. },
  1260. {
  1261. "id": "72cb6015df2f20429ace816b11548ce6a4683538",
  1262. "message": "11\n",
  1263. "committer_name": "Mzk",
  1264. "committer_email": "166831061@qq.com",
  1265. "projectId": 686
  1266. },
  1267. {
  1268. "id": "8c51710056b3e260b66c6366e0e3b9dc38d634c4",
  1269. "message": "f\n",
  1270. "committer_name": "Mzk",
  1271. "committer_email": "166831061@qq.com",
  1272. "projectId": 686
  1273. },
  1274. {
  1275. "id": "c458cf5c069b10bfa0bc243f57d1747cda87840b",
  1276. "message": "init: 项目初始化\n",
  1277. "committer_name": "Mzk",
  1278. "committer_email": "166831061@qq.com",
  1279. "projectId": 685
  1280. },
  1281. {
  1282. "id": "1dbbb89fc3bfc0f96c10a29e4a8a077230b334cc",
  1283. "message": "修改mysql配置\n",
  1284. "committer_name": "Mzk",
  1285. "committer_email": "166831061@qq.com",
  1286. "projectId": 685
  1287. },
  1288. {
  1289. "id": "0db204f0988c00536abc5703af301757597d3ac8",
  1290. "message": "fix:fix#123#\n",
  1291. "committer_name": "pjy001",
  1292. "committer_email": "895971165@qq.com",
  1293. "projectId": 685
  1294. }
  1295. ],
  1296. "11": [
  1297. {
  1298. "id": "1329d94eb4f7b04b4253e5d698f3183f75aeeb0e",
  1299. "message": "init: 前端项目初始化\n",
  1300. "committer_name": "Yujie Song",
  1301. "committer_email": "940900298@qq.com",
  1302. "projectId": 711
  1303. },
  1304. {
  1305. "id": "3fb4a6be62a874c62a10f51456a7b418c63dd37e",
  1306. "message": "fix: Fixed the bug that the front-end submission can be empty\n",
  1307. "committer_name": "Yujie Song",
  1308. "committer_email": "940900298@qq.com",
  1309. "projectId": 711
  1310. },
  1311. {
  1312. "id": "a965b821c1cb25690b98298a30ee91b9ca23adfb",
  1313. "message": "fix: Correct grammatical errors\n",
  1314. "committer_name": "Yujie Song",
  1315. "committer_email": "940900298@qq.com",
  1316. "projectId": 711
  1317. },
  1318. {
  1319. "id": "4f9ade032cc8a40b2cbe6389fd1210dfaeac2a5d",
  1320. "message": "Update Header.vue",
  1321. "committer_name": "201870189",
  1322. "committer_email": "940900298@qq.com",
  1323. "projectId": 711
  1324. },
  1325. {
  1326. "id": "e7b5966213acf5ee610596ff4b8b455fd1f6144f",
  1327. "message": "Update Header.vue",
  1328. "committer_name": "201870189",
  1329. "committer_email": "940900298@qq.com",
  1330. "projectId": 711
  1331. },
  1332. {
  1333. "id": "a56b37f42cc5d4f73490dfac79e0b7128cc9990c",
  1334. "message": "Update Header.vue",
  1335. "committer_name": "201870189",
  1336. "committer_email": "940900298@qq.com",
  1337. "projectId": 711
  1338. },
  1339. {
  1340. "id": "07abe15666eee89833b25f605f9a05d73a29a691",
  1341. "message": "Update Header.vue",
  1342. "committer_name": "201870189",
  1343. "committer_email": "940900298@qq.com",
  1344. "projectId": 711
  1345. },
  1346. {
  1347. "id": "68ad765aeddc6b74845a58739d93d5c0a5c7d34d",
  1348. "message": "Update Header.vue",
  1349. "committer_name": "201870189",
  1350. "committer_email": "940900298@qq.com",
  1351. "projectId": 711
  1352. },
  1353. {
  1354. "id": "8b67bfb5fb1726e4f2993a0cc665ed36b286cda4",
  1355. "message": "Update Header.vue",
  1356. "committer_name": "201870189",
  1357. "committer_email": "940900298@qq.com",
  1358. "projectId": 711
  1359. },
  1360. {
  1361. "id": "ec70dc6673b0023d89fbe7290fb3b09e08d2ba7d",
  1362. "message": "Update Header.vue",
  1363. "committer_name": "201870189",
  1364. "committer_email": "940900298@qq.com",
  1365. "projectId": 711
  1366. },
  1367. {
  1368. "id": "55980f34f7f9c8fe135696d33eb2595efa371f84",
  1369. "message": "Update Header.vue",
  1370. "committer_name": "201870189",
  1371. "committer_email": "940900298@qq.com",
  1372. "projectId": 711
  1373. },
  1374. {
  1375. "id": "9b816ca6005f3c20ca93f84c5fee79cb6e5f170b",
  1376. "message": "Update Header.vue",
  1377. "committer_name": "201870189",
  1378. "committer_email": "940900298@qq.com",
  1379. "projectId": 711
  1380. },
  1381. {
  1382. "id": "b137115e02371f01978f8139b6aed1f858602fe2",
  1383. "message": "\"\"\n",
  1384. "committer_name": "Arthur-Sun",
  1385. "committer_email": "1319479327@qq.com",
  1386. "projectId": 711
  1387. },
  1388. {
  1389. "id": "171a914a0b63a6436b0255ac47aa975ce8b75139",
  1390. "message": "\"\"\n",
  1391. "committer_name": "Arthur-Sun",
  1392. "committer_email": "1319479327@qq.com",
  1393. "projectId": 711
  1394. },
  1395. {
  1396. "id": "603903b76b882460d5b6f284b948a836af210a4c",
  1397. "message": "\"\"\n",
  1398. "committer_name": "Arthur-Sun",
  1399. "committer_email": "1319479327@qq.com",
  1400. "projectId": 711
  1401. },
  1402. {
  1403. "id": "ac421840043b95ce3a51ce4b27b6dfb8aafd43b5",
  1404. "message": "\"\"\n",
  1405. "committer_name": "Arthur-Sun",
  1406. "committer_email": "1319479327@qq.com",
  1407. "projectId": 711
  1408. },
  1409. {
  1410. "id": "a8c5594c97b879c17fa0be7adb7a666fda710693",
  1411. "message": "init:后端项目初始化\n",
  1412. "committer_name": "Yujie Song",
  1413. "committer_email": "940900298@qq.com",
  1414. "projectId": 710
  1415. },
  1416. {
  1417. "id": "5c07b57103c2a5c604bbc7906fec284b3f5acc8c",
  1418. "message": "update application_yml\n",
  1419. "committer_name": "Yujie Song",
  1420. "committer_email": "940900298@qq.com",
  1421. "projectId": 710
  1422. },
  1423. {
  1424. "id": "2a203c66ddb6ae77a1959c75f52adb8de7711aee",
  1425. "message": "update application_yml\n",
  1426. "committer_name": "Yujie Song",
  1427. "committer_email": "940900298@qq.com",
  1428. "projectId": 710
  1429. },
  1430. {
  1431. "id": "e360cb5813e63fbd0e1010c4ed35cca9dc304eee",
  1432. "message": "fix backend bug -1\n",
  1433. "committer_name": "Arthur-Sun",
  1434. "committer_email": "1319479327@qq.com",
  1435. "projectId": 710
  1436. },
  1437. {
  1438. "id": "c44fcb6d80b7077286a67911dbd8d3ddbc6502ff",
  1439. "message": "test\n",
  1440. "committer_name": "Arthur-Sun",
  1441. "committer_email": "1319479327@qq.com",
  1442. "projectId": 710
  1443. },
  1444. {
  1445. "id": "404695b2cf50e32ac60247017c66e19d2906ca92",
  1446. "message": "\"feat: working on #1953#, 添加新任务service完成\"\n",
  1447. "committer_name": "Arthur-Sun",
  1448. "committer_email": "1319479327@qq.com",
  1449. "projectId": 710
  1450. },
  1451. {
  1452. "id": "dc8144e9110e6f9d95654669b7bdcbc6551db319",
  1453. "message": "\"\"\n",
  1454. "committer_name": "Arthur-Sun",
  1455. "committer_email": "1319479327@qq.com",
  1456. "projectId": 710
  1457. },
  1458. {
  1459. "id": "646068f0c6daba310021d083b40648319c04ee3b",
  1460. "message": "feat: working on #1953#, 添加新任务service完成\n",
  1461. "committer_name": "Arthur-Sun",
  1462. "committer_email": "1319479327@qq.com",
  1463. "projectId": 710
  1464. },
  1465. {
  1466. "id": "e0cde63ea1d48c553ec6b86925f920aa173f1b98",
  1467. "message": "fix: fixing on #111#, 正在尝试\n",
  1468. "committer_name": "Arthur-Sun",
  1469. "committer_email": "1319479327@qq.com",
  1470. "projectId": 710
  1471. },
  1472. {
  1473. "id": "93a916e5cf1461c133c56e7023cab271d7999f91",
  1474. "message": "fix: fixing on #111#, 正在尝试\n",
  1475. "committer_name": "Arthur-Sun",
  1476. "committer_email": "1319479327@qq.com",
  1477. "projectId": 710
  1478. },
  1479. {
  1480. "id": "89a6c3f223bcb9a9a05cc77d1a018ad73b7f0fa9",
  1481. "message": "fix: fixing on #111#, 正在尝试\n",
  1482. "committer_name": "Arthur-Sun",
  1483. "committer_email": "1319479327@qq.com",
  1484. "projectId": 710
  1485. },
  1486. {
  1487. "id": "4d66f55558b15ef8b43030e0a2add2a43d13e545",
  1488. "message": "fix: fixing on #111#, 正在尝试\n",
  1489. "committer_name": "Arthur-Sun",
  1490. "committer_email": "1319479327@qq.com",
  1491. "projectId": 710
  1492. },
  1493. {
  1494. "id": "a8cb8fefad808dd1b1ce3a8ad5d47377c5c23078",
  1495. "message": "fix: fixing on #111#, 正在尝试\n",
  1496. "committer_name": "Arthur-Sun",
  1497. "committer_email": "1319479327@qq.com",
  1498. "projectId": 710
  1499. }
  1500. ],
  1501. "12": [
  1502. {
  1503. "id": "7ea6fbba9c7f3a37b4be3d474927e4c80f9363a0",
  1504. "message": "init frontend\n",
  1505. "committer_name": "cyx27",
  1506. "committer_email": "1643034754@qq.com",
  1507. "projectId": 503
  1508. },
  1509. {
  1510. "id": "a856503ca065e50baed5f344ca2401f75c6d0b0b",
  1511. "message": "test\n",
  1512. "committer_name": "cyx27",
  1513. "committer_email": "1643034754@qq.com",
  1514. "projectId": 503
  1515. },
  1516. {
  1517. "id": "ecb87f876b6ec115c8ef973a7f757cf00b411239",
  1518. "message": "test\n",
  1519. "committer_name": "cyx27",
  1520. "committer_email": "1643034754@qq.com",
  1521. "projectId": 503
  1522. },
  1523. {
  1524. "id": "7d3683de53d175aa9002728f4501c60b6bc7d04e",
  1525. "message": "test\n",
  1526. "committer_name": "cyx27",
  1527. "committer_email": "1643034754@qq.com",
  1528. "projectId": 503
  1529. },
  1530. {
  1531. "id": "cabf0897b19c903355d70d90755ae64d0cffad27",
  1532. "message": "test\n",
  1533. "committer_name": "cyx27",
  1534. "committer_email": "1643034754@qq.com",
  1535. "projectId": 503
  1536. },
  1537. {
  1538. "id": "ce850d42b610e546709c39d7a06ccd42105a39b9",
  1539. "message": "test\n",
  1540. "committer_name": "cyx27",
  1541. "committer_email": "1643034754@qq.com",
  1542. "projectId": 503
  1543. },
  1544. {
  1545. "id": "0ce7065c00292dc37a0499407d7d0f930c5eb2a3",
  1546. "message": "Changes\n",
  1547. "committer_name": "201180024",
  1548. "committer_email": "2833328717@qq.com",
  1549. "projectId": 503
  1550. },
  1551. {
  1552. "id": "d67d7fc207fc5a3e0b7e8fa5a29648a07c0d24c0",
  1553. "message": "fix: fix #96#, 提交空title的bug已解决\n",
  1554. "committer_name": "201180024",
  1555. "committer_email": "2833328717@qq.com",
  1556. "projectId": 503
  1557. },
  1558. {
  1559. "id": "596834818b90c337fa6d37e34a9461ff507e11ab",
  1560. "message": "Merge remote-tracking branch 'origin/master'\n",
  1561. "committer_name": "201180024",
  1562. "committer_email": "2833328717@qq.com",
  1563. "projectId": 503
  1564. },
  1565. {
  1566. "id": "7a2a32dda036299696b4ff2f22eb4946d148b053",
  1567. "message": "init backend\n",
  1568. "committer_name": "cyx27",
  1569. "committer_email": "1643034754@qq.com",
  1570. "projectId": 500
  1571. },
  1572. {
  1573. "id": "3f5e1686c5a0e7385a5dc29a4c1b6fb602cfb0ed",
  1574. "message": "update 1\n",
  1575. "committer_name": "cyx27",
  1576. "committer_email": "1643034754@qq.com",
  1577. "projectId": 500
  1578. },
  1579. {
  1580. "id": "a99aaf7f190b92c09f053c011ac291d795ca705b",
  1581. "message": "test\n",
  1582. "committer_name": "cyx27",
  1583. "committer_email": "1643034754@qq.com",
  1584. "projectId": 500
  1585. },
  1586. {
  1587. "id": "1277ba276293ccf09d3a3fa8bc083cb0797d0294",
  1588. "message": "feat: working on #1610#\n",
  1589. "committer_name": "cyx27",
  1590. "committer_email": "1643034754@qq.com",
  1591. "projectId": 500
  1592. },
  1593. {
  1594. "id": "5fdea1dd44ddb420bf93dc9be407239111375f31",
  1595. "message": "feat: complete #1610#, 更新任务相关代码完成\n",
  1596. "committer_name": "201180024",
  1597. "committer_email": "2833328717@qq.com",
  1598. "projectId": 500
  1599. },
  1600. {
  1601. "id": "6d2403d6792bd06c2cf04867131220cde54e9ac1",
  1602. "message": "Merge remote-tracking branch 'origin/master'\n",
  1603. "committer_name": "201180024",
  1604. "committer_email": "2833328717@qq.com",
  1605. "projectId": 500
  1606. },
  1607. {
  1608. "id": "a2970dd96d3d55aa961d926db8d253b569d21500",
  1609. "message": "fix: fix #95#, 点击更改任务状态无效的bug已解决\n",
  1610. "committer_name": "201180024",
  1611. "committer_email": "2833328717@qq.com",
  1612. "projectId": 500
  1613. },
  1614. {
  1615. "id": "1adeabc8e2d9b78bb1052a806f3594af0905450c",
  1616. "message": "Merge remote-tracking branch 'origin/master'\n",
  1617. "committer_name": "201180024",
  1618. "committer_email": "2833328717@qq.com",
  1619. "projectId": 500
  1620. }
  1621. ],
  1622. "13": [
  1623. {
  1624. "id": "d34946e7e84b15bad005f68f2dc49df3cdcf80e7",
  1625. "message": "init:项目初始化\n",
  1626. "committer_name": "201250036",
  1627. "committer_email": "1281851484@qq.com",
  1628. "projectId": 763
  1629. },
  1630. {
  1631. "id": "eb61b980acedf98c4dbd51e6ac798eb25d77cbf3",
  1632. "message": "add.1\n",
  1633. "committer_name": "admin",
  1634. "committer_email": "2393349290@qq.com",
  1635. "projectId": 763
  1636. },
  1637. {
  1638. "id": "ea8c36e68ccff2485348199f5e668c395b590077",
  1639. "message": "add.2\n",
  1640. "committer_name": "admin",
  1641. "committer_email": "2393349290@qq.com",
  1642. "projectId": 763
  1643. },
  1644. {
  1645. "id": "8f497b96dd8cbbdccbb8f6b53cdfe43996ea18cf",
  1646. "message": "add.2\n",
  1647. "committer_name": "admin",
  1648. "committer_email": "2393349290@qq.com",
  1649. "projectId": 763
  1650. },
  1651. {
  1652. "id": "4b337d10cd1e9d830a105dbdc993adcef50118d4",
  1653. "message": "add.4\n",
  1654. "committer_name": "admin",
  1655. "committer_email": "2393349290@qq.com",
  1656. "projectId": 763
  1657. },
  1658. {
  1659. "id": "e35de8bf533aed7776b14ad76ab665c9b8d1808f",
  1660. "message": "add.5\n",
  1661. "committer_name": "admin",
  1662. "committer_email": "2393349290@qq.com",
  1663. "projectId": 763
  1664. },
  1665. {
  1666. "id": "eaf7adccf0769f76fa8211fd8f1f089bbf955c5e",
  1667. "message": "init:项目初始化\n",
  1668. "committer_name": "201250036",
  1669. "committer_email": "1281851484@qq.com",
  1670. "projectId": 762
  1671. },
  1672. {
  1673. "id": "1c3d349efffe6aeaf4044f23091d9285213190f6",
  1674. "message": "1\n",
  1675. "committer_name": "201250036",
  1676. "committer_email": "1281851484@qq.com",
  1677. "projectId": 762
  1678. },
  1679. {
  1680. "id": "a76319f2c8302243cef121241eb255b5fc33bdd5",
  1681. "message": "2\n",
  1682. "committer_name": "201250036",
  1683. "committer_email": "1281851484@qq.com",
  1684. "projectId": 762
  1685. },
  1686. {
  1687. "id": "b6f868ebbfe746753be728c42cffbc830137693f",
  1688. "message": "3\n",
  1689. "committer_name": "201250036",
  1690. "committer_email": "1281851484@qq.com",
  1691. "projectId": 762
  1692. }
  1693. ],
  1694. "14": [
  1695. {
  1696. "id": "022332300aeec9e06b3311a28782a07da616b840",
  1697. "message": "init:前端项目初始化\n",
  1698. "committer_name": "FlippedXiu",
  1699. "committer_email": "201041516@qq.com",
  1700. "projectId": 525
  1701. },
  1702. {
  1703. "id": "b8f6c764c5c267b188c66eaa352ab201c3cfcefb",
  1704. "message": "push test, don't take care.\n",
  1705. "committer_name": "FlippedXiu",
  1706. "committer_email": "201041516@qq.com",
  1707. "projectId": 525
  1708. },
  1709. {
  1710. "id": "0205b876ca24a77e6a363d05c3b3b38e8bee45f7",
  1711. "message": "push test, don't take care.\n",
  1712. "committer_name": "FlippedXiu",
  1713. "committer_email": "201041516@qq.com",
  1714. "projectId": 525
  1715. },
  1716. {
  1717. "id": "090e4738e55bd16b8375261e839cb2b407ab59b8",
  1718. "message": "add bend\n",
  1719. "committer_name": "Fiiish",
  1720. "committer_email": "fiiish@icloud.com",
  1721. "projectId": 525
  1722. },
  1723. {
  1724. "id": "b5136ca936971520d7c169eb39ffa3cffd3c6a74",
  1725. "message": "..\n",
  1726. "committer_name": "Fiiish",
  1727. "committer_email": "fiiish@icloud.com",
  1728. "projectId": 525
  1729. },
  1730. {
  1731. "id": "9926412c5776508b0a401e239d70bc5211dd04d8",
  1732. "message": "fix: fix #136#\n",
  1733. "committer_name": "Fiiish",
  1734. "committer_email": "fiiish@icloud.com",
  1735. "projectId": 525
  1736. },
  1737. {
  1738. "id": "97e71878d531719f60e944fb008b57cc9a913474",
  1739. "message": "fix #132#,fix #133#\n",
  1740. "committer_name": "Fiiish",
  1741. "committer_email": "fiiish@icloud.com",
  1742. "projectId": 525
  1743. },
  1744. {
  1745. "id": "64e01bd09d87804d3face5bc990188754c4a37bf",
  1746. "message": "fix #133#\n",
  1747. "committer_name": "Fiiish",
  1748. "committer_email": "fiiish@icloud.com",
  1749. "projectId": 525
  1750. },
  1751. {
  1752. "id": "4a0dd59f70b135741f6fc36dc38c9a0e3c5b316d",
  1753. "message": "fix: fix #133#\n",
  1754. "committer_name": "Fiiish",
  1755. "committer_email": "fiiish@icloud.com",
  1756. "projectId": 525
  1757. },
  1758. {
  1759. "id": "de8d0c5c64b810677916df929775a0be17730ed3",
  1760. "message": "add table\n",
  1761. "committer_name": "Fiiish",
  1762. "committer_email": "fiiish@icloud.com",
  1763. "projectId": 525
  1764. },
  1765. {
  1766. "id": "5fb03faa7a12034a9a86153b7c833360de082960",
  1767. "message": "shit\n",
  1768. "committer_name": "Fiiish",
  1769. "committer_email": "fiiish@icloud.com",
  1770. "projectId": 525
  1771. },
  1772. {
  1773. "id": "61b7ac7b88c72e1601c9a8820ec2a5f46f448217",
  1774. "message": "1\n",
  1775. "committer_name": "shuofang",
  1776. "committer_email": "2716877061@qq.com",
  1777. "projectId": 521
  1778. },
  1779. {
  1780. "id": "55d48911a3d04fd96be7689d6024148b89f7d256",
  1781. "message": "fix: fixing on #132#, 修改无法更新任务状态\n",
  1782. "committer_name": "shuofang",
  1783. "committer_email": "2716877061@qq.com",
  1784. "projectId": 521
  1785. },
  1786. {
  1787. "id": "6313e2aeceb19d7235118ba3dd357b604adb99b2",
  1788. "message": "feat: working on #2004#, 添加新任务service完成\n",
  1789. "committer_name": "shuofang",
  1790. "committer_email": "2716877061@qq.com",
  1791. "projectId": 521
  1792. },
  1793. {
  1794. "id": "beb2903ec433791f85418689d37bf5f08e37304e",
  1795. "message": "feat: working on #2005#, 添加新任务service完成\n",
  1796. "committer_name": "shuofang",
  1797. "committer_email": "2716877061@qq.com",
  1798. "projectId": 521
  1799. },
  1800. {
  1801. "id": "cb033736f4092f428c52cf92e0508629636d2397",
  1802. "message": "feat: complete #2006#, 删除任务相关代码完成\n",
  1803. "committer_name": "shuofang",
  1804. "committer_email": "2716877061@qq.com",
  1805. "projectId": 521
  1806. },
  1807. {
  1808. "id": "9402c0569862aaddf4adaa3376db74e27e257e60",
  1809. "message": "fix: #132#\n",
  1810. "committer_name": "shuofang",
  1811. "committer_email": "2716877061@qq.com",
  1812. "projectId": 521
  1813. },
  1814. {
  1815. "id": "1d89f99c85e67fb88f558c03a49b5b1c41f55637",
  1816. "message": "fix: fixing on #132#, 修改无法更新任务状态\n",
  1817. "committer_name": "shuofang",
  1818. "committer_email": "2716877061@qq.com",
  1819. "projectId": 521
  1820. },
  1821. {
  1822. "id": "d65130719cec0094d2a2da378ea50d890f0583a8",
  1823. "message": "0\n",
  1824. "committer_name": "shuofang",
  1825. "committer_email": "2716877061@qq.com",
  1826. "projectId": 521
  1827. },
  1828. {
  1829. "id": "522bcdd0aed72cc1c37380a0315a20131aa90887",
  1830. "message": "0\n",
  1831. "committer_name": "shuofang",
  1832. "committer_email": "2716877061@qq.com",
  1833. "projectId": 521
  1834. },
  1835. {
  1836. "id": "764014f16cfb30a9e895ba8825f44b39c41d916c",
  1837. "message": "0\n",
  1838. "committer_name": "shuofang",
  1839. "committer_email": "2716877061@qq.com",
  1840. "projectId": 521
  1841. },
  1842. {
  1843. "id": "6f922441b64333981406e158fe49fc690cd0ed3e",
  1844. "message": "0\n",
  1845. "committer_name": "shuofang",
  1846. "committer_email": "2716877061@qq.com",
  1847. "projectId": 521
  1848. },
  1849. {
  1850. "id": "a7df31d45d988d5ff8b04248d57c3a19d28a1f88",
  1851. "message": "0\n",
  1852. "committer_name": "shuofang",
  1853. "committer_email": "2716877061@qq.com",
  1854. "projectId": 521
  1855. },
  1856. {
  1857. "id": "0e9e5f6f4734e3794bd35a344fa12af7e5e644ca",
  1858. "message": "wf working on \"update\"\n",
  1859. "committer_name": "201250024",
  1860. "committer_email": "201250024@smail.nju.edu.cn",
  1861. "projectId": 521
  1862. },
  1863. {
  1864. "id": "6ac64d729111beb8d19c8ec5db933d14d00093a4",
  1865. "message": "\"isCompleted\"\n",
  1866. "committer_name": "201250024",
  1867. "committer_email": "201250024@smail.nju.edu.cn",
  1868. "projectId": 521
  1869. },
  1870. {
  1871. "id": "ff4f2cec541815a828fc6b66d1a0f04263dfc668",
  1872. "message": "\"isCompleted == 0 ? 1 : 0\"\n",
  1873. "committer_name": "201250024",
  1874. "committer_email": "201250024@smail.nju.edu.cn",
  1875. "projectId": 521
  1876. },
  1877. {
  1878. "id": "4090643372020d4c7e91729576a7b05f9c337359",
  1879. "message": "fix: fixing on #132#\n",
  1880. "committer_name": "201250024",
  1881. "committer_email": "201250024@smail.nju.edu.cn",
  1882. "projectId": 521
  1883. },
  1884. {
  1885. "id": "405842e8b22e3deacb3775ab96e609b0ec0a89dd",
  1886. "message": "fix: fixing on #132#\n",
  1887. "committer_name": "shuofang",
  1888. "committer_email": "2716877061@qq.com",
  1889. "projectId": 521
  1890. },
  1891. {
  1892. "id": "a05fcbfe6395717271ff772c3f94d996890cd0fd",
  1893. "message": "Merge remote-tracking branch 'origin/master'\n\n# Conflicts:\n#\tsrc/main/java/com/example/demo/service/impl/TaskServiceImpl.java\n",
  1894. "committer_name": "shuofang",
  1895. "committer_email": "2716877061@qq.com",
  1896. "projectId": 521
  1897. },
  1898. {
  1899. "id": "3319a3b04bebfdb5979d09b43718e7c2c7e14b80",
  1900. "message": "fix: fixing on #132#\n",
  1901. "committer_name": "shuofang",
  1902. "committer_email": "2716877061@qq.com",
  1903. "projectId": 521
  1904. },
  1905. {
  1906. "id": "3765775e410594b1a479be4f6c1514455d866772",
  1907. "message": "fix: fixing on #132#\n",
  1908. "committer_name": "201250024",
  1909. "committer_email": "201250024@smail.nju.edu.cn",
  1910. "projectId": 521
  1911. }
  1912. ],
  1913. "15": [
  1914. {
  1915. "id": "3b46962dc7d70f662b899eca7364c9d59904f47d",
  1916. "message": "init:项目初始化\n",
  1917. "committer_name": "201250022",
  1918. "committer_email": "201250022@smail.nju.edu.cn",
  1919. "projectId": 672
  1920. },
  1921. {
  1922. "id": "5f32c7710c31b19bf0b246c527867e5070312116",
  1923. "message": "int\n",
  1924. "committer_name": "201250022",
  1925. "committer_email": "201250022@smail.nju.edu.cn",
  1926. "projectId": 672
  1927. },
  1928. {
  1929. "id": "bf3d23c987f63ccbe84b83447d47567040e3858f",
  1930. "message": "init: 项目初始化\n",
  1931. "committer_name": "201250022",
  1932. "committer_email": "201250022@smail.nju.edu.cn",
  1933. "projectId": 672
  1934. },
  1935. {
  1936. "id": "925bf33425d4262fb406bb8943a3b1ddfa7d416d",
  1937. "message": "123\n",
  1938. "committer_name": "张月明",
  1939. "committer_email": "zhangyueming0@163.com",
  1940. "projectId": 672
  1941. },
  1942. {
  1943. "id": "fd120732b532289070b858a2ad09cb3165ab7a15",
  1944. "message": "1\n",
  1945. "committer_name": "201250022",
  1946. "committer_email": "201250022@smail.nju.edu.cn",
  1947. "projectId": 672
  1948. },
  1949. {
  1950. "id": "89d0769671111195a7f8510260864d1ac1856404",
  1951. "message": "Merge remote-tracking branch 'origin/master'\n",
  1952. "committer_name": "201250022",
  1953. "committer_email": "201250022@smail.nju.edu.cn",
  1954. "projectId": 672
  1955. },
  1956. {
  1957. "id": "4e2abbbddc7c84852a4a73347a7903bb7af47547",
  1958. "message": "11\n",
  1959. "committer_name": "201250022",
  1960. "committer_email": "201250022@smail.nju.edu.cn",
  1961. "projectId": 672
  1962. },
  1963. {
  1964. "id": "112270b13c60d45fd3941cd8dba5f31f0af45e41",
  1965. "message": "fix: fix #134#, 点击更改任务状态无效的bug已解决\n",
  1966. "committer_name": "张月明",
  1967. "committer_email": "zhangyueming0@163.com",
  1968. "projectId": 672
  1969. },
  1970. {
  1971. "id": "0b9de860a6f4f8bf2b685f6747a343c528377c83",
  1972. "message": "Merge remote-tracking branch 'origin/master'\n",
  1973. "committer_name": "张月明",
  1974. "committer_email": "zhangyueming0@163.com",
  1975. "projectId": 672
  1976. },
  1977. {
  1978. "id": "b9b19aa8cbbd1401b57b2117df9d852fa03f2f37",
  1979. "message": "init:项目初始化\n",
  1980. "committer_name": "201250022",
  1981. "committer_email": "201250022@smail.nju.edu.cn",
  1982. "projectId": 671
  1983. },
  1984. {
  1985. "id": "0785447cc8b14445698ccdb775f285d7828c3b33",
  1986. "message": "init\n",
  1987. "committer_name": "201250022",
  1988. "committer_email": "201250022@smail.nju.edu.cn",
  1989. "projectId": 671
  1990. },
  1991. {
  1992. "id": "a3a2cb0aa2373243ca6090aa205f93d663346091",
  1993. "message": "init: 后端项目初始化\n",
  1994. "committer_name": "201250022",
  1995. "committer_email": "201250022@smail.nju.edu.cn",
  1996. "projectId": 671
  1997. },
  1998. {
  1999. "id": "faf5d69f81322789202a401f012d8189446732d7",
  2000. "message": "123\n",
  2001. "committer_name": "张月明",
  2002. "committer_email": "zhangyueming0@163.com",
  2003. "projectId": 671
  2004. },
  2005. {
  2006. "id": "b7d8164786f67f5c76ae4bfda6f0b19db1f7e1c4",
  2007. "message": "fix: fix #134#, 点击更改任务状态无效的bug已解决\n",
  2008. "committer_name": "张月明",
  2009. "committer_email": "zhangyueming0@163.com",
  2010. "projectId": 671
  2011. },
  2012. {
  2013. "id": "c8b9a39f78dff589485367254a7bbf17c538fdc1",
  2014. "message": "fix: fixing on #134#, 修改TaskServiceImpl中的update方法为task.setIsCompleted(isCompleted);,本地测试没问题,提交后不知道为什么还有bug\n",
  2015. "committer_name": "张月明",
  2016. "committer_email": "zhangyueming0@163.com",
  2017. "projectId": 671
  2018. },
  2019. {
  2020. "id": "b06e894b8a0e04c1c5203c7e7f8dacf82f2137cd",
  2021. "message": "Merge remote-tracking branch 'origin/master'\n",
  2022. "committer_name": "张月明",
  2023. "committer_email": "zhangyueming0@163.com",
  2024. "projectId": 671
  2025. },
  2026. {
  2027. "id": "c5b95f0411cb596ddbb3a13e4f1392a25503b0d9",
  2028. "message": "1\n",
  2029. "committer_name": "张月明",
  2030. "committer_email": "zhangyueming0@163.com",
  2031. "projectId": 671
  2032. },
  2033. {
  2034. "id": "f5109457cf38516d2b24a8102591e002832366df",
  2035. "message": "1\n",
  2036. "committer_name": "张月明",
  2037. "committer_email": "zhangyueming0@163.com",
  2038. "projectId": 671
  2039. },
  2040. {
  2041. "id": "2446b7d2ae198f32a598d44f2e232dde143826ea",
  2042. "message": "1\n",
  2043. "committer_name": "张月明",
  2044. "committer_email": "zhangyueming0@163.com",
  2045. "projectId": 671
  2046. },
  2047. {
  2048. "id": "34e49088f904439dee59e155cdfa8ee5d54cdca2",
  2049. "message": "123\n",
  2050. "committer_name": "张月明",
  2051. "committer_email": "zhangyueming0@163.com",
  2052. "projectId": 671
  2053. },
  2054. {
  2055. "id": "2a6ebd1e42b46acbf735f8a9a19855fc954c7c22",
  2056. "message": "123\n",
  2057. "committer_name": "张月明",
  2058. "committer_email": "zhangyueming0@163.com",
  2059. "projectId": 671
  2060. },
  2061. {
  2062. "id": "5cfd2a0ebc99adc5dd989f0ffb77cd91b1b8086b",
  2063. "message": "fix: fix #134#, 点击更改任务状态无效的bug已解决,之前可能是网络问题\n",
  2064. "committer_name": "张月明",
  2065. "committer_email": "zhangyueming0@163.com",
  2066. "projectId": 671
  2067. },
  2068. {
  2069. "id": "a9c19b860022042f58986687b39fd250585d4283",
  2070. "message": "Merge remote-tracking branch 'origin/master'\n",
  2071. "committer_name": "张月明",
  2072. "committer_email": "zhangyueming0@163.com",
  2073. "projectId": 671
  2074. }
  2075. ],
  2076. "16": [
  2077. {
  2078. "id": "748c022c0c568604763e537749ac40d546a18d60",
  2079. "message": "init\n",
  2080. "committer_name": "201250104",
  2081. "committer_email": "2681299706@qq.com",
  2082. "projectId": 754
  2083. },
  2084. {
  2085. "id": "db3899a85bab714bc384a9ec04e40551ec3dfb6b",
  2086. "message": "test01\n",
  2087. "committer_name": "201250104",
  2088. "committer_email": "2681299706@qq.com",
  2089. "projectId": 754
  2090. },
  2091. {
  2092. "id": "cb7a3988f16efe86034cfb35d50101b1bde867c5",
  2093. "message": "test02 for empty msg\n",
  2094. "committer_name": "201250104",
  2095. "committer_email": "2681299706@qq.com",
  2096. "projectId": 754
  2097. },
  2098. {
  2099. "id": "34a0857adf039b602406a6f99c0a37bf6b3b1a28",
  2100. "message": "test02 for empty msg\n",
  2101. "committer_name": "201250104",
  2102. "committer_email": "2681299706@qq.com",
  2103. "projectId": 754
  2104. },
  2105. {
  2106. "id": "cf01bfcbe38fe0022e80f558967351491d6a299b",
  2107. "message": "feat: complete #129#, 修改状态相关代码完成\n",
  2108. "committer_name": "ste1la",
  2109. "committer_email": "494803615@qq.com",
  2110. "projectId": 754
  2111. },
  2112. {
  2113. "id": "772e527af977ecb3eff298046809f63c33675449",
  2114. "message": "feat: complete #129#, 修改状态相关代码\n",
  2115. "committer_name": "ste1la",
  2116. "committer_email": "494803615@qq.com",
  2117. "projectId": 754
  2118. },
  2119. {
  2120. "id": "64fe50642f2266149759190d0a9f56c1b9cf89a1",
  2121. "message": "fix: fixing on #129#, 这只是一个测试\n",
  2122. "committer_name": "ste1la",
  2123. "committer_email": "494803615@qq.com",
  2124. "projectId": 754
  2125. },
  2126. {
  2127. "id": "be5d66c787d7ca38cd02021d17eda87f5458a8de",
  2128. "message": "Revert \"test02 for empty msg\"\n\nThis reverts commit 34a0857adf039b602406a6f99c0a37bf6b3b1a28.\n",
  2129. "committer_name": "ste1la",
  2130. "committer_email": "494803615@qq.com",
  2131. "projectId": 754
  2132. },
  2133. {
  2134. "id": "d7c68fa4a571c0eb6de98825a615790a643cc5e2",
  2135. "message": "fix: fixing on #129#, 这也是一个测试\n",
  2136. "committer_name": "ste1la",
  2137. "committer_email": "494803615@qq.com",
  2138. "projectId": 754
  2139. },
  2140. {
  2141. "id": "fab08917ff1309bde01142debed548cea43be25a",
  2142. "message": "fix: fixing on #129#, 这也是一个测试\n",
  2143. "committer_name": "ste1la",
  2144. "committer_email": "494803615@qq.com",
  2145. "projectId": 754
  2146. },
  2147. {
  2148. "id": "77e92a2a5ff2357c5312e2ca103a72cbfa13ae5b",
  2149. "message": "init\n",
  2150. "committer_name": "201250104",
  2151. "committer_email": "2681299706@qq.com",
  2152. "projectId": 753
  2153. },
  2154. {
  2155. "id": "19d53be781c4da0b941e136949b65afaf4057b18",
  2156. "message": "set db\n",
  2157. "committer_name": "201250104",
  2158. "committer_email": "2681299706@qq.com",
  2159. "projectId": 753
  2160. },
  2161. {
  2162. "id": "9791bd2b1aa21f683d1e9b823f431f01fba9a4e8",
  2163. "message": "test\n",
  2164. "committer_name": "201250104",
  2165. "committer_email": "2681299706@qq.com",
  2166. "projectId": 753
  2167. },
  2168. {
  2169. "id": "12ee548592dd06b152ffeb8b2be377d669d87f94",
  2170. "message": "feat: working on #1813#, 添加新任务service完成\nfeat: complete #1814#, 删除任务相关代码完成\n",
  2171. "committer_name": "201250104",
  2172. "committer_email": "2681299706@qq.com",
  2173. "projectId": 753
  2174. },
  2175. {
  2176. "id": "b45807085b28bd7ebdcb7c969d2437fd59ac0ed9",
  2177. "message": "feat: complete #1814#, 删除任务相关代码完成\n",
  2178. "committer_name": "201250104",
  2179. "committer_email": "2681299706@qq.com",
  2180. "projectId": 753
  2181. },
  2182. {
  2183. "id": "2edc91e82128882403a8e693ff3d23f7372cb713",
  2184. "message": "fix: fixing on #129#, 这又是一个测试\n",
  2185. "committer_name": "ste1la",
  2186. "committer_email": "494803615@qq.com",
  2187. "projectId": 753
  2188. },
  2189. {
  2190. "id": "7a9f0c46c543ca9db853fc6cd70e4730a30531ee",
  2191. "message": "Merge remote-tracking branch 'origin/master'\n",
  2192. "committer_name": "ste1la",
  2193. "committer_email": "494803615@qq.com",
  2194. "projectId": 753
  2195. },
  2196. {
  2197. "id": "43c80de9ac0f4ef6841bfa5ef87c07e4289578fc",
  2198. "message": "fix: fix #128#, 提交空title的bug已解决\n",
  2199. "committer_name": "ste1la",
  2200. "committer_email": "494803615@qq.com",
  2201. "projectId": 753
  2202. }
  2203. ],
  2204. "17": [
  2205. {
  2206. "id": "9c14f80a44de9094bde9bd67ddb21024c0df71ef",
  2207. "message": "init: 后端项目初始化\n",
  2208. "committer_name": "145425491",
  2209. "committer_email": "1245294786@qq.com",
  2210. "projectId": 696
  2211. },
  2212. {
  2213. "id": "6f27032afb7f0e80a6e45f14af9857fd5bea1b83",
  2214. "message": "数据库配置信息更新\n",
  2215. "committer_name": "145425491",
  2216. "committer_email": "1245294786@qq.com",
  2217. "projectId": 696
  2218. },
  2219. {
  2220. "id": "b6ec9636564785fa7d3e6cb1b4647afd541e648d",
  2221. "message": "modify updateById\n",
  2222. "committer_name": "V_Galaxy",
  2223. "committer_email": "1904821183@qq.com",
  2224. "projectId": 696
  2225. },
  2226. {
  2227. "id": "b68470ab5a82e611013019d9bffc560653bc1306",
  2228. "message": "更改后端mysql配置信息\n",
  2229. "committer_name": "201250007",
  2230. "committer_email": "201250007@smail.nju.edu.cn",
  2231. "projectId": 696
  2232. },
  2233. {
  2234. "id": "ce529116902ff2b37b03336cf4fdc7354bdee922",
  2235. "message": "Merge branch 'master' of http://seecoder-gitlab-gitlab.seec.seecoder.cn/201250013/first-lab-backend\n",
  2236. "committer_name": "201250007",
  2237. "committer_email": "201250007@smail.nju.edu.cn",
  2238. "projectId": 696
  2239. },
  2240. {
  2241. "id": "c7d0f6e7d4bc0f69f829a4070653b48703392d7a",
  2242. "message": "modify controller\n",
  2243. "committer_name": "V_Galaxy",
  2244. "committer_email": "1904821183@qq.com",
  2245. "projectId": 696
  2246. },
  2247. {
  2248. "id": "e964ac14b6b3697486940e28334c483bd66b2c87",
  2249. "message": "Merge branch 'master' of http://seecoder-gitlab-gitlab.seec.seecoder.cn/201250013/first-lab-backend\n",
  2250. "committer_name": "V_Galaxy",
  2251. "committer_email": "1904821183@qq.com",
  2252. "projectId": 696
  2253. },
  2254. {
  2255. "id": "d627c98e616d6b44a2baf26e39d753b7425a7ad8",
  2256. "message": "打包时跳过测试用例\n",
  2257. "committer_name": "201250007",
  2258. "committer_email": "201250007@smail.nju.edu.cn",
  2259. "projectId": 696
  2260. },
  2261. {
  2262. "id": "08635cf9d2facf78d0099a1d00e070230f2075cc",
  2263. "message": "initial version\n",
  2264. "committer_name": "145425491",
  2265. "committer_email": "1245294786@qq.com",
  2266. "projectId": 695
  2267. },
  2268. {
  2269. "id": "434b8c6ae269f454f567ca7d5f83d8c342166002",
  2270. "message": "init:前端初始化\n",
  2271. "committer_name": "145425491",
  2272. "committer_email": "1245294786@qq.com",
  2273. "projectId": 695
  2274. },
  2275. {
  2276. "id": "ccc8054dabf0a4c96c182be89851b355155c89d6",
  2277. "message": "Merge branch 'master' of http://seecoder-gitlab-gitlab.seec.seecoder.cn/201250013/first-lab-frontend\n",
  2278. "committer_name": "145425491",
  2279. "committer_email": "1245294786@qq.com",
  2280. "projectId": 695
  2281. },
  2282. {
  2283. "id": "c10354c56e1d4fc9982a346206e23331a8a9697d",
  2284. "message": "try\n",
  2285. "committer_name": "Freeeeeeeeedom",
  2286. "committer_email": "“709034836@qq.com”",
  2287. "projectId": 695
  2288. },
  2289. {
  2290. "id": "0a94de1ff5cce6f888d5614d9d00ab11d780463b",
  2291. "message": "add exclamation mark\n",
  2292. "committer_name": "V_Galaxy",
  2293. "committer_email": "1904821183@qq.com",
  2294. "projectId": 695
  2295. },
  2296. {
  2297. "id": "00cfc8ddb4b22f64fe6da68bfcce4ab52bcb974d",
  2298. "message": "修改注释\n",
  2299. "committer_name": "201250007",
  2300. "committer_email": "201250007@smail.nju.edu.cn",
  2301. "projectId": 695
  2302. },
  2303. {
  2304. "id": "fbd1a89557395b72fb374076968d08631f3dab45",
  2305. "message": "feat: working on #2171#, test git log\n",
  2306. "committer_name": "V_Galaxy",
  2307. "committer_email": "1904821183@qq.com",
  2308. "projectId": 695
  2309. },
  2310. {
  2311. "id": "c3330e8566dfb913e5a7f21e3c1444ba30a2e7e8",
  2312. "message": "Merge branch 'master' of http://seecoder-gitlab-gitlab.seec.seecoder.cn/201250013/first-lab-frontend\n",
  2313. "committer_name": "V_Galaxy",
  2314. "committer_email": "1904821183@qq.com",
  2315. "projectId": 695
  2316. },
  2317. {
  2318. "id": "9cf953dca4e6ecbd650d043efab9fe68f7e3dd8a",
  2319. "message": "feat: working on #2171#, test git log\n",
  2320. "committer_name": "V_Galaxy",
  2321. "committer_email": "1904821183@qq.com",
  2322. "projectId": 695
  2323. },
  2324. {
  2325. "id": "573d03c09aff4ac28b88119cd2e20a1a8a37f4a8",
  2326. "message": "handle empty title and alert isCompleted\n",
  2327. "committer_name": "V_Galaxy",
  2328. "committer_email": "1904821183@qq.com",
  2329. "projectId": 695
  2330. },
  2331. {
  2332. "id": "331afc8ac712d98005639ab15735e16b3d875386",
  2333. "message": "handle empty title and alert isCompleted\n",
  2334. "committer_name": "V_Galaxy",
  2335. "committer_email": "1904821183@qq.com",
  2336. "projectId": 695
  2337. },
  2338. {
  2339. "id": "b9f14779fb49d936969f18c1074bdae400efdca9",
  2340. "message": "revert isCompleted\n",
  2341. "committer_name": "V_Galaxy",
  2342. "committer_email": "1904821183@qq.com",
  2343. "projectId": 695
  2344. },
  2345. {
  2346. "id": "b7cb7e6babd742eb01cf51ee8137778dd9b84750",
  2347. "message": "add table of names\n",
  2348. "committer_name": "145425491",
  2349. "committer_email": "1245294786@qq.com",
  2350. "projectId": 695
  2351. },
  2352. {
  2353. "id": "7fbb196f37f0ad16b44b372f834658b39a853e42",
  2354. "message": "Update table of members\n",
  2355. "committer_name": "145425491",
  2356. "committer_email": "1245294786@qq.com",
  2357. "projectId": 695
  2358. }
  2359. ],
  2360. "18": [
  2361. {
  2362. "id": "47a0e7c5fd2428734c30a0d95f171c330d2c34ad",
  2363. "message": "项目初始化\n",
  2364. "committer_name": "Chinder",
  2365. "committer_email": "201250200@smail.nju.edu.cn",
  2366. "projectId": 838
  2367. },
  2368. {
  2369. "id": "9843d4a1c72bc4369da9ce3de6ed4282933d9645",
  2370. "message": "项目初始化\n",
  2371. "committer_name": "Chinder",
  2372. "committer_email": "201250200@smail.nju.edu.cn",
  2373. "projectId": 837
  2374. }
  2375. ],
  2376. "19": [
  2377. {
  2378. "id": "f27dc481e303fad3e0aea8a95c9bee49f97e419c",
  2379. "message": "fix the empty title bug\n",
  2380. "committer_name": "Tianmasikong",
  2381. "committer_email": "210583478@qq.com",
  2382. "projectId": 474
  2383. },
  2384. {
  2385. "id": "8b15202eb6a9ca1e5e57736624c8ad9ce07555f3",
  2386. "message": "fix the empty title bug\n",
  2387. "committer_name": "Tianmasikong",
  2388. "committer_email": "210583478@qq.com",
  2389. "projectId": 474
  2390. },
  2391. {
  2392. "id": "cbaffcd0a698574a37d21b52c4df3c100f5895e7",
  2393. "message": "fix the bug of frontEnd\n",
  2394. "committer_name": "86155",
  2395. "committer_email": "2674099260@qq.com",
  2396. "projectId": 474
  2397. },
  2398. {
  2399. "id": "9f1f630165eb3d7e646a326316faded770654cf1",
  2400. "message": "fix the bug of frontEnd\n",
  2401. "committer_name": "86155",
  2402. "committer_email": "2674099260@qq.com",
  2403. "projectId": 474
  2404. },
  2405. {
  2406. "id": "2e01dfb091298465fbefe2347fd5cd8d1ebf3f40",
  2407. "message": "fix the empty title bug\n",
  2408. "committer_name": "Tianmasikong",
  2409. "committer_email": "210583478@qq.com",
  2410. "projectId": 474
  2411. },
  2412. {
  2413. "id": "86b9d0116eb30fc86fae79424a582abd2382f22e",
  2414. "message": "fix the empty title bug\n",
  2415. "committer_name": "Tianmasikong",
  2416. "committer_email": "210583478@qq.com",
  2417. "projectId": 474
  2418. },
  2419. {
  2420. "id": "136b11f05aa1cbc0afc9f0a60c24754848db5d9f",
  2421. "message": "d\n",
  2422. "committer_name": "Tianmasikong",
  2423. "committer_email": "210583478@qq.com",
  2424. "projectId": 474
  2425. },
  2426. {
  2427. "id": "cc1dbca08747a7dccda815a83edaf91e35b00481",
  2428. "message": "fix the empty title bug\n",
  2429. "committer_name": "Tianmasikong",
  2430. "committer_email": "210583478@qq.com",
  2431. "projectId": 474
  2432. },
  2433. {
  2434. "id": "a95f64e8fde8eebb115322ce7938b982cd5bd942",
  2435. "message": "fix the bug\n",
  2436. "committer_name": "86155",
  2437. "committer_email": "2674099260@qq.com",
  2438. "projectId": 474
  2439. },
  2440. {
  2441. "id": "45babe6bd6410bb840e74079a8757e891723c5f7",
  2442. "message": "fix the empty title bug\n",
  2443. "committer_name": "Tianmasikong",
  2444. "committer_email": "210583478@qq.com",
  2445. "projectId": 474
  2446. },
  2447. {
  2448. "id": "e784b5e0579a5d6094d84d0dc5ec7cac83ac49a1",
  2449. "message": "Merge remote-tracking branch 'origin/master'\n",
  2450. "committer_name": "Tianmasikong",
  2451. "committer_email": "210583478@qq.com",
  2452. "projectId": 474
  2453. },
  2454. {
  2455. "id": "88e18c429433f42066c0196135ba13e345844ac0",
  2456. "message": "fix the empty title bug\n",
  2457. "committer_name": "Tianmasikong",
  2458. "committer_email": "210583478@qq.com",
  2459. "projectId": 474
  2460. },
  2461. {
  2462. "id": "66d7cd86d6dd10c34e8e52f24ebbeed5971291f7",
  2463. "message": "fix the empty title bug\n",
  2464. "committer_name": "Tianmasikong",
  2465. "committer_email": "210583478@qq.com",
  2466. "projectId": 474
  2467. },
  2468. {
  2469. "id": "5cbaf92ab3c28a7fc2a8186a93e4a5820fa97273",
  2470. "message": "fix the empty title bug\n",
  2471. "committer_name": "Tianmasikong",
  2472. "committer_email": "210583478@qq.com",
  2473. "projectId": 474
  2474. },
  2475. {
  2476. "id": "93169733bfba659a54660c69a9a111ee2c922be9",
  2477. "message": "fix the empty title bug\n",
  2478. "committer_name": "Tianmasikong",
  2479. "committer_email": "210583478@qq.com",
  2480. "projectId": 474
  2481. },
  2482. {
  2483. "id": "48f278fba9969f9bb30e21c16611084d617a1896",
  2484. "message": "fix the empty title bug\n",
  2485. "committer_name": "Tianmasikong",
  2486. "committer_email": "210583478@qq.com",
  2487. "projectId": 474
  2488. },
  2489. {
  2490. "id": "1095b3bf79c6fd2363a192bd966302707f41b220",
  2491. "message": "fix the empty title bug\n",
  2492. "committer_name": "Tianmasikong",
  2493. "committer_email": "210583478@qq.com",
  2494. "projectId": 474
  2495. },
  2496. {
  2497. "id": "ad3209802760e38710d0bfa1cbbb739bf0109a44",
  2498. "message": "fix the empty title bug\n",
  2499. "committer_name": "Tianmasikong",
  2500. "committer_email": "210583478@qq.com",
  2501. "projectId": 474
  2502. },
  2503. {
  2504. "id": "4be250042229a21409dc0be44cbf15b09fcb3d38",
  2505. "message": "fix the bug\n",
  2506. "committer_name": "201250058",
  2507. "committer_email": "2674099260@qq.com",
  2508. "projectId": 474
  2509. },
  2510. {
  2511. "id": "b2e16c239220df3ef6153cab6243cdb5320653b1",
  2512. "message": "fix: fix #106#, 提交空title的bug\n",
  2513. "committer_name": "201250058",
  2514. "committer_email": "2674099260@qq.com",
  2515. "projectId": 474
  2516. },
  2517. {
  2518. "id": "5c55c506bbec80f71256747b985e0647cc8115de",
  2519. "message": "init: 项⽬初始化\n",
  2520. "committer_name": "Tianmasikong",
  2521. "committer_email": "210583478@qq.com",
  2522. "projectId": 473
  2523. },
  2524. {
  2525. "id": "69075a8f0a8da9851af7ca90373bc690569127c1",
  2526. "message": "spingboot配置\n",
  2527. "committer_name": "Tianmasikong",
  2528. "committer_email": "210583478@qq.com",
  2529. "projectId": 473
  2530. },
  2531. {
  2532. "id": "d8f1485cdd3c6e489a31d39db51ea3c8365d47c9",
  2533. "message": "56\n",
  2534. "committer_name": "86155",
  2535. "committer_email": "2674099260@qq.com",
  2536. "projectId": 473
  2537. },
  2538. {
  2539. "id": "93e838cc0b65e6ef9b51a3e036748981ef6e96d4",
  2540. "message": "56\n",
  2541. "committer_name": "86155",
  2542. "committer_email": "2674099260@qq.com",
  2543. "projectId": 473
  2544. },
  2545. {
  2546. "id": "71a0b391abd5a91bd84be39ba5dc11d9f391b054",
  2547. "message": "fe\n",
  2548. "committer_name": "86155",
  2549. "committer_email": "2674099260@qq.com",
  2550. "projectId": 473
  2551. },
  2552. {
  2553. "id": "e5f9d1d268c6b6260f6e570ef8cb2574982da88f",
  2554. "message": "test\n",
  2555. "committer_name": "86155",
  2556. "committer_email": "2674099260@qq.com",
  2557. "projectId": 473
  2558. },
  2559. {
  2560. "id": "865be3a13764c2d1a8a5254f943a48dac5c3ff98",
  2561. "message": "test the front bug\n",
  2562. "committer_name": "86155",
  2563. "committer_email": "2674099260@qq.com",
  2564. "projectId": 473
  2565. },
  2566. {
  2567. "id": "242d854a905f0f75811093aa49688492f7dda2f6",
  2568. "message": "feat: complete #1636#\n",
  2569. "committer_name": "86155",
  2570. "committer_email": "2674099260@qq.com",
  2571. "projectId": 473
  2572. },
  2573. {
  2574. "id": "9e360d86d0903a4b9fe10b4ee497905ec518b8a3",
  2575. "message": "fix: fix #91#, 示例代码中⽆法更新任务状态\n",
  2576. "committer_name": "201250058",
  2577. "committer_email": "2674099260@qq.com",
  2578. "projectId": 473
  2579. }
  2580. ],
  2581. "20": [
  2582. {
  2583. "id": "d0ef7e0e14a732446c2c9c67ba21317405fe1e61",
  2584. "message": "init:项目初始化\n",
  2585. "committer_name": "2581871230@qq.com",
  2586. "committer_email": "2581871230@qq.com",
  2587. "projectId": 720
  2588. },
  2589. {
  2590. "id": "66c3087d3407b49787a8c14e337b0f38f765cb65",
  2591. "message": "修改提交title为空的bug\n",
  2592. "committer_name": "2581871230@qq.com",
  2593. "committer_email": "2581871230@qq.com",
  2594. "projectId": 720
  2595. },
  2596. {
  2597. "id": "c7463292d085a067673d4b607643987accde6df9",
  2598. "message": "空title bug修改\n",
  2599. "committer_name": "2581871230@qq.com",
  2600. "committer_email": "2581871230@qq.com",
  2601. "projectId": 720
  2602. },
  2603. {
  2604. "id": "c096c205d184d3f4ea5dc81fff40f6217f64c967",
  2605. "message": "init:项目初始化\n",
  2606. "committer_name": "2581871230@qq.com",
  2607. "committer_email": "2581871230@qq.com",
  2608. "projectId": 719
  2609. },
  2610. {
  2611. "id": "bed0bb216132835e0c63414d14c202b1a8cfbcea",
  2612. "message": "后端项目部署\n",
  2613. "committer_name": "2581871230@qq.com",
  2614. "committer_email": "2581871230@qq.com",
  2615. "projectId": 719
  2616. },
  2617. {
  2618. "id": "f2dface42dd54f03d5315af8753503852c9cd8e9",
  2619. "message": "更新状态bug修改\n",
  2620. "committer_name": "2581871230@qq.com",
  2621. "committer_email": "2581871230@qq.com",
  2622. "projectId": 719
  2623. },
  2624. {
  2625. "id": "dcbd037bedc22d4ac7bfeb619ef6eb9453535496",
  2626. "message": "更新状态bug修复\n",
  2627. "committer_name": "2581871230@qq.com",
  2628. "committer_email": "2581871230@qq.com",
  2629. "projectId": 719
  2630. }
  2631. ],
  2632. "21": [
  2633. {
  2634. "id": "424cabb2c03467d4b36a9b063a8b423820910fe9",
  2635. "message": "init:前端项目初始化\n",
  2636. "committer_name": "bzy",
  2637. "committer_email": "965677311@qq.com",
  2638. "projectId": 586
  2639. },
  2640. {
  2641. "id": "91b18029ca9d5b0fbe90748998085acd0408c17f",
  2642. "message": "尝试修复“允许提交空Title”的bug\n",
  2643. "committer_name": "bzy",
  2644. "committer_email": "965677311@qq.com",
  2645. "projectId": 586
  2646. },
  2647. {
  2648. "id": "be573127fcdf7af88f05ab1131684c713a701079",
  2649. "message": "try\n",
  2650. "committer_name": "bzy",
  2651. "committer_email": "965677311@qq.com",
  2652. "projectId": 586
  2653. },
  2654. {
  2655. "id": "53c93d7be76380e364efbb33af46face17774295",
  2656. "message": "fix: fix #101#, 提交空title的bug已解决\n",
  2657. "committer_name": "bzy",
  2658. "committer_email": "965677311@qq.com",
  2659. "projectId": 586
  2660. },
  2661. {
  2662. "id": "cdd93a37b80901eea41127dd5256e9fb77b5a775",
  2663. "message": "fix: fixing on #101#, 修改xxxx\n",
  2664. "committer_name": "bzy",
  2665. "committer_email": "965677311@qq.com",
  2666. "projectId": 586
  2667. },
  2668. {
  2669. "id": "82b4c16d97b1f3cce1caa1d6b92145812380e5d6",
  2670. "message": "fix: fixing on #101#\n",
  2671. "committer_name": "leonid",
  2672. "committer_email": "leonid100010@163.com",
  2673. "projectId": 586
  2674. },
  2675. {
  2676. "id": "e0476988880304ae55237915761c78abc9230470",
  2677. "message": "fix: fixing on #101#,空title问题尝试\n",
  2678. "committer_name": "leonid",
  2679. "committer_email": "leonid100010@163.com",
  2680. "projectId": 586
  2681. },
  2682. {
  2683. "id": "6b42e854fa4c43349142e9ce613141bd6f14a14d",
  2684. "message": "fix: fixing on #101#,空title问题尝试\n",
  2685. "committer_name": "leonid",
  2686. "committer_email": "leonid100010@163.com",
  2687. "projectId": 586
  2688. },
  2689. {
  2690. "id": "056ed65cd7e7553f802bf7fbbaa29b0773f6286e",
  2691. "message": "fix: fixing on #101#,空title问题尝试\n",
  2692. "committer_name": "leonid",
  2693. "committer_email": "leonid100010@163.com",
  2694. "projectId": 586
  2695. },
  2696. {
  2697. "id": "9d8c649c3d221b834ba19251577a81dd914267cf",
  2698. "message": "fix: fixing on #101#,空title问题尝试\n",
  2699. "committer_name": "leonid",
  2700. "committer_email": "leonid100010@163.com",
  2701. "projectId": 586
  2702. },
  2703. {
  2704. "id": "8a66e92574371e0d0324743d3bea67e2c64dc831",
  2705. "message": "fix: fixing on #101#,空title问题尝试\n",
  2706. "committer_name": "leonid",
  2707. "committer_email": "leonid100010@163.com",
  2708. "projectId": 586
  2709. },
  2710. {
  2711. "id": "bd666bdec4dec60e35a1ce1178b1ef1d745130e1",
  2712. "message": "fix: fixing on #101#,空title问题尝试\n",
  2713. "committer_name": "leonid",
  2714. "committer_email": "leonid100010@163.com",
  2715. "projectId": 586
  2716. },
  2717. {
  2718. "id": "7aeeb5ba204a258117a33d51e36d875254788c51",
  2719. "message": "fix: fixing on #101#,空title问题尝试\n",
  2720. "committer_name": "leonid",
  2721. "committer_email": "leonid100010@163.com",
  2722. "projectId": 586
  2723. },
  2724. {
  2725. "id": "9ca720da294835dbd18cf76c0a8323ec7576141b",
  2726. "message": "init:后端项目初始化\n",
  2727. "committer_name": "bzy",
  2728. "committer_email": "965677311@qq.com",
  2729. "projectId": 583
  2730. },
  2731. {
  2732. "id": "f809b7f575fa72fa8ac8e8b29a5e18e682ab103e",
  2733. "message": "1\n",
  2734. "committer_name": "bzy",
  2735. "committer_email": "965677311@qq.com",
  2736. "projectId": 583
  2737. },
  2738. {
  2739. "id": "1dc2707fa3aab413ce795d199a524fa853c5e361",
  2740. "message": "1\n",
  2741. "committer_name": "bzy",
  2742. "committer_email": "965677311@qq.com",
  2743. "projectId": 583
  2744. },
  2745. {
  2746. "id": "a4f2139f9c5f198566f5c13363f3b33fff7332b7",
  2747. "message": "change .yml\n",
  2748. "committer_name": "leonid",
  2749. "committer_email": "leonid100010@163.com",
  2750. "projectId": 583
  2751. },
  2752. {
  2753. "id": "733f8ee92127efad2a264e952e5617a53b09a448",
  2754. "message": "change .yml\n",
  2755. "committer_name": "leonid",
  2756. "committer_email": "leonid100010@163.com",
  2757. "projectId": 583
  2758. },
  2759. {
  2760. "id": "0cfe36c8b688a5dfda4e3a3c162632b6819af1dd",
  2761. "message": "1\n",
  2762. "committer_name": "zhaoxingrui",
  2763. "committer_email": "171250598@smail.nju.edu.cn",
  2764. "projectId": 583
  2765. }
  2766. ],
  2767. "22": [
  2768. {
  2769. "id": "7ece7b16e2355c7a07d5c3cc5c681fdfceb15e48",
  2770. "message": "init:项目初始化\n",
  2771. "committer_name": "201250120",
  2772. "committer_email": "1614615055@qq.com",
  2773. "projectId": 648
  2774. },
  2775. {
  2776. "id": "757b4ea8e81b59094459c051065bcba1a727ac85",
  2777. "message": "init:项目初始化\n",
  2778. "committer_name": "unknown",
  2779. "committer_email": "you@example.com",
  2780. "projectId": 646
  2781. },
  2782. {
  2783. "id": "c5ae458ee4c71adf82826fa3ef3145c7e4f57c3f",
  2784. "message": "代码配置\n",
  2785. "committer_name": "unknown",
  2786. "committer_email": "you@example.com",
  2787. "projectId": 646
  2788. }
  2789. ],
  2790. "23": [
  2791. {
  2792. "id": "442f6fbe70d51e4be77eb94ded6c6069d9823876",
  2793. "message": "init:项目初始化\n",
  2794. "committer_name": "201250098",
  2795. "committer_email": "201250098@smail.nju.edu.cn",
  2796. "projectId": 743
  2797. },
  2798. {
  2799. "id": "219d7d715b44b8a4f1fcd2cff36c1b56d6c73293",
  2800. "message": "提交空title的todo\n",
  2801. "committer_name": "dessert",
  2802. "committer_email": "1609728997@qq.com",
  2803. "projectId": 743
  2804. },
  2805. {
  2806. "id": "5ca986bd4954b392e2e04a4fba7f45699121a5e8",
  2807. "message": "添加列表\n",
  2808. "committer_name": "chen",
  2809. "committer_email": "201250100@smail.nju.edu.cn",
  2810. "projectId": 743
  2811. },
  2812. {
  2813. "id": "02a465da852618b7d4d51397621f37a254615344",
  2814. "message": "feat: working on #654#\n",
  2815. "committer_name": "chen",
  2816. "committer_email": "201250100@smail.nju.edu.cn",
  2817. "projectId": 743
  2818. },
  2819. {
  2820. "id": "836d9261cde45b3bd0864f373fec647ec07d84a5",
  2821. "message": "feat: working on #654#\n",
  2822. "committer_name": "chen",
  2823. "committer_email": "201250100@smail.nju.edu.cn",
  2824. "projectId": 743
  2825. },
  2826. {
  2827. "id": "9f3e76b2575f0005ca6122c96c18060f1bdc7037",
  2828. "message": "feat: working on #654#\n",
  2829. "committer_name": "chen",
  2830. "committer_email": "201250100@smail.nju.edu.cn",
  2831. "projectId": 743
  2832. },
  2833. {
  2834. "id": "de0a2f02e90211b36041cf6dbaef0083c82f60bc",
  2835. "message": "feat: working on #654#\n",
  2836. "committer_name": "chen",
  2837. "committer_email": "201250100@smail.nju.edu.cn",
  2838. "projectId": 743
  2839. },
  2840. {
  2841. "id": "84b246a7d242abed8d63fe4cfc03389cc90e1976",
  2842. "message": "text\n",
  2843. "committer_name": "chen",
  2844. "committer_email": "201250100@smail.nju.edu.cn",
  2845. "projectId": 743
  2846. },
  2847. {
  2848. "id": "cff88cf8884fcd6bfd4e52c8179e902a72536415",
  2849. "message": "init:初始化\n",
  2850. "committer_name": "201250098",
  2851. "committer_email": "201250098@smail.nju.edu.cn",
  2852. "projectId": 304
  2853. },
  2854. {
  2855. "id": "dda7779cc2a4a2995e374b1bd4a783aed0570a53",
  2856. "message": "项目初始化\n",
  2857. "committer_name": "201250098",
  2858. "committer_email": "201250098@smail.nju.edu.cn",
  2859. "projectId": 304
  2860. },
  2861. {
  2862. "id": "7954a005b15a173734c9102b7d1f7774e53d7dea",
  2863. "message": "更改后端mysql配置信息\n",
  2864. "committer_name": "dessert",
  2865. "committer_email": "1609728997@qq.com",
  2866. "projectId": 304
  2867. },
  2868. {
  2869. "id": "0dbe8afb1213df908b8a0d43d607bde1f5c2ae0f",
  2870. "message": "配置MySQL\n",
  2871. "committer_name": "dessert",
  2872. "committer_email": "1609728997@qq.com",
  2873. "projectId": 304
  2874. },
  2875. {
  2876. "id": "e6bfb38cca1380850a1a2043fa3d4de7ea0069bd",
  2877. "message": "配置MySQL\n",
  2878. "committer_name": "dessert",
  2879. "committer_email": "1609728997@qq.com",
  2880. "projectId": 304
  2881. },
  2882. {
  2883. "id": "bb1f38d15c81c7bcbb80c388073076b3c2501086",
  2884. "message": "配置MySQL\n",
  2885. "committer_name": "dessert",
  2886. "committer_email": "1609728997@qq.com",
  2887. "projectId": 304
  2888. },
  2889. {
  2890. "id": "e42bb9967f3c823ea084ba255da7f2c66c9204cf",
  2891. "message": "配置MySQL\n",
  2892. "committer_name": "dessert",
  2893. "committer_email": "1609728997@qq.com",
  2894. "projectId": 304
  2895. },
  2896. {
  2897. "id": "453ca31077151123d6a73e7f101a93ae29abeb45",
  2898. "message": "测试\n",
  2899. "committer_name": "chen",
  2900. "committer_email": "201250100@smail.nju.edu.cn",
  2901. "projectId": 304
  2902. },
  2903. {
  2904. "id": "0447f71d8618768efb5d89a8f935d000fb32c95f",
  2905. "message": "Merge remote-tracking branch 'origin/master'\n\n# Conflicts:\n#\tsrc/main/resources/application.yml\n",
  2906. "committer_name": "chen",
  2907. "committer_email": "201250100@smail.nju.edu.cn",
  2908. "projectId": 304
  2909. },
  2910. {
  2911. "id": "2f2f98a38100177a2009e3eb8450b2436df70209",
  2912. "message": "try\n",
  2913. "committer_name": "201250099",
  2914. "committer_email": "1037349371@qq.com",
  2915. "projectId": 304
  2916. },
  2917. {
  2918. "id": "64d2339dd7af6c731c98121684e04f81f5656776",
  2919. "message": "text\n",
  2920. "committer_name": "chen",
  2921. "committer_email": "201250100@smail.nju.edu.cn",
  2922. "projectId": 304
  2923. },
  2924. {
  2925. "id": "361dd91ab0f95dae0af0b8fae9093b4be642c1c1",
  2926. "message": "text\n",
  2927. "committer_name": "chen",
  2928. "committer_email": "201250100@smail.nju.edu.cn",
  2929. "projectId": 304
  2930. }
  2931. ],
  2932. "24": [
  2933. {
  2934. "id": "4cae6110332551f323aa7f35c5ac63a95db768b9",
  2935. "message": "init:项目初始化\n",
  2936. "committer_name": "Lyxuan",
  2937. "committer_email": "1049117751@qq.com",
  2938. "projectId": 748
  2939. },
  2940. {
  2941. "id": "28fa5e96fc7a33543ca3ba0bbc6149b0e4abefcd",
  2942. "message": "init:项目初始化\n",
  2943. "committer_name": "Lyxuan",
  2944. "committer_email": "1049117751@qq.com",
  2945. "projectId": 746
  2946. },
  2947. {
  2948. "id": "87798566c8d6ef0acc72c4f0979481febd828106",
  2949. "message": "更新mysql配置\n",
  2950. "committer_name": "Lyxuan",
  2951. "committer_email": "1049117751@qq.com",
  2952. "projectId": 746
  2953. },
  2954. {
  2955. "id": "1ebd8010227517ae26583427dd72ce5cd596db47",
  2956. "message": "init:项目初始化\n",
  2957. "committer_name": "Lyxuan",
  2958. "committer_email": "1049117751@qq.com",
  2959. "projectId": 746
  2960. },
  2961. {
  2962. "id": "b3ed5e403d3190df11b96899642b4b195eef2b1f",
  2963. "message": "项目更新\n",
  2964. "committer_name": "Lyxuan",
  2965. "committer_email": "1049117751@qq.com",
  2966. "projectId": 746
  2967. },
  2968. {
  2969. "id": "4687d16942386839e68edb40bec50238af4e29c7",
  2970. "message": "1\n",
  2971. "committer_name": "Gary",
  2972. "committer_email": "201250084@smail.nju.edu.cn",
  2973. "projectId": 746
  2974. },
  2975. {
  2976. "id": "8c4f5d4ca044c72e8efd1762bed1c4734a2f7474",
  2977. "message": "Merge remote-tracking branch 'origin/master'\n\n# Conflicts:\n#\tsrc/main/resources/application.yml\n",
  2978. "committer_name": "Gary",
  2979. "committer_email": "201250084@smail.nju.edu.cn",
  2980. "projectId": 746
  2981. },
  2982. {
  2983. "id": "5086dee4b26ef4067ef1c74dc9f8679cb152a662",
  2984. "message": "1\n",
  2985. "committer_name": "Gary",
  2986. "committer_email": "201250084@smail.nju.edu.cn",
  2987. "projectId": 746
  2988. },
  2989. {
  2990. "id": "681e4dd3ce3ca0be996e7bb026467392237fa6d0",
  2991. "message": "2\n",
  2992. "committer_name": "Gary",
  2993. "committer_email": "201250084@smail.nju.edu.cn",
  2994. "projectId": 746
  2995. },
  2996. {
  2997. "id": "407e1962b95a8c5c820e2bd169425e1be9db9c75",
  2998. "message": "change\n",
  2999. "committer_name": "Lyxuan",
  3000. "committer_email": "1049117751@qq.com",
  3001. "projectId": 746
  3002. }
  3003. ],
  3004. "25": [
  3005. {
  3006. "id": "6a5806491ea543bb5d25a4d6e343bddf0fac2c30",
  3007. "message": "init:项目初始化\n",
  3008. "committer_name": "201180082",
  3009. "committer_email": "201180082@smail.nju.edu.cn",
  3010. "projectId": 876
  3011. },
  3012. {
  3013. "id": "aaa13f39aa6b868f38e3f81c56368a6490a3bcd6",
  3014. "message": "1\n",
  3015. "committer_name": "201830129",
  3016. "committer_email": "201830129@smail.nju.edu.cn",
  3017. "projectId": 876
  3018. },
  3019. {
  3020. "id": "68711d68d41df75ec2c7c95e56c650ca4a276eac",
  3021. "message": "2\n",
  3022. "committer_name": "201830129",
  3023. "committer_email": "201830129@smail.nju.edu.cn",
  3024. "projectId": 876
  3025. },
  3026. {
  3027. "id": "7f4bdfa314ac6a0120d8697534407a575783e1b6",
  3028. "message": "3\n",
  3029. "committer_name": "201830129",
  3030. "committer_email": "201830129@smail.nju.edu.cn",
  3031. "projectId": 876
  3032. },
  3033. {
  3034. "id": "e05d06499b54fc460fec424b00095b3e53452ae6",
  3035. "message": "4\n",
  3036. "committer_name": "201830129",
  3037. "committer_email": "201830129@smail.nju.edu.cn",
  3038. "projectId": 876
  3039. },
  3040. {
  3041. "id": "f0c08bcfc38e8ead1baecf2377ba46338d5bd43f",
  3042. "message": "init:项目初始化\n",
  3043. "committer_name": "201180082",
  3044. "committer_email": "201180082@smail.nju.edu.cn",
  3045. "projectId": 875
  3046. },
  3047. {
  3048. "id": "52457ab9e295355c075bd1eaf329c66da5f0baf5",
  3049. "message": "1\n",
  3050. "committer_name": "201830129",
  3051. "committer_email": "201830129@smail.nju.edu.cn",
  3052. "projectId": 875
  3053. },
  3054. {
  3055. "id": "6c5da4875cb2f46190a5ecc4f3490ab8c57f9bfa",
  3056. "message": "2\n",
  3057. "committer_name": "201830129",
  3058. "committer_email": "201830129@smail.nju.edu.cn",
  3059. "projectId": 875
  3060. },
  3061. {
  3062. "id": "fe687dd1dc0881afe8c1867314c5974a5dafc421",
  3063. "message": "3\n",
  3064. "committer_name": "201830129",
  3065. "committer_email": "201830129@smail.nju.edu.cn",
  3066. "projectId": 875
  3067. }
  3068. ],
  3069. "26": [
  3070. {
  3071. "id": "07ae01a8387c34345ca092e59b2e068bf163a32a",
  3072. "message": "init:项目初始化\n",
  3073. "committer_name": "Cloudy1225",
  3074. "committer_email": "2034885420@qq.com",
  3075. "projectId": 920
  3076. },
  3077. {
  3078. "id": "63d02666b76fd96b72fe749d9d848ad6ed26963b",
  3079. "message": "init:项目初始化\n",
  3080. "committer_name": "Cloudy1225",
  3081. "committer_email": "2034885420@qq.com",
  3082. "projectId": 919
  3083. }
  3084. ],
  3085. "27": [
  3086. {
  3087. "id": "2627f1b964c3d561aab8a5df07edb16cea6f9450",
  3088. "message": "init: 项⽬初始化\n",
  3089. "committer_name": "201250145",
  3090. "committer_email": "201250145@smail.nju.edu.cn",
  3091. "projectId": 782
  3092. },
  3093. {
  3094. "id": "05e6662a45949de533d7270d75dfab285d87630f",
  3095. "message": "init: 项目初始化\n",
  3096. "committer_name": "201250145",
  3097. "committer_email": "201250145@smail.nju.edu.cn",
  3098. "projectId": 780
  3099. },
  3100. {
  3101. "id": "b35bb4c53e39715413b30f0c91ea850737cf1a56",
  3102. "message": "1\n",
  3103. "committer_name": "201850030",
  3104. "committer_email": "201850030@smail.nju.edu.cn",
  3105. "projectId": 780
  3106. },
  3107. {
  3108. "id": "a8eced3a22d7c6cd97212d794cd1099262e08cb8",
  3109. "message": "测试\n",
  3110. "committer_name": "201850030",
  3111. "committer_email": "201850030@smail.nju.edu.cn",
  3112. "projectId": 780
  3113. },
  3114. {
  3115. "id": "bdb5283f4587ecf89f12fdcdf48aeb44599496f7",
  3116. "message": "1\n",
  3117. "committer_name": "201850030",
  3118. "committer_email": "201850030@smail.nju.edu.cn",
  3119. "projectId": 780
  3120. },
  3121. {
  3122. "id": "5f5e78fa34cf68740e36d2c280a6fa827c5c88f8",
  3123. "message": "1\n",
  3124. "committer_name": "201850030",
  3125. "committer_email": "201850030@smail.nju.edu.cn",
  3126. "projectId": 780
  3127. },
  3128. {
  3129. "id": "0dca4a6ccb687398e4232485462dc3d59aa36fd5",
  3130. "message": "1\n",
  3131. "committer_name": "201850030",
  3132. "committer_email": "201850030@smail.nju.edu.cn",
  3133. "projectId": 780
  3134. },
  3135. {
  3136. "id": "f79d81195f050174ecb729291f44bada93338632",
  3137. "message": "fix: fixing on #204#, 修改title不为空的bug\n",
  3138. "committer_name": "“201850029”",
  3139. "committer_email": "201850029@smail.nju.edu.cn",
  3140. "projectId": 780
  3141. },
  3142. {
  3143. "id": "929216e66228af4d3eeda1b063930f04a1ac2df4",
  3144. "message": "init: 项目初始化\n",
  3145. "committer_name": "201250145",
  3146. "committer_email": "201250145@smail.nju.edu.cn",
  3147. "projectId": 779
  3148. },
  3149. {
  3150. "id": "45302cf355ba5587ce290ab4c9b97090dcf996fd",
  3151. "message": "http://seecoder-gitlab-gitlab.seec.seecoder.cn/201250145/todo-list-backend\n",
  3152. "committer_name": "201250145",
  3153. "committer_email": "201250145@smail.nju.edu.cn",
  3154. "projectId": 779
  3155. },
  3156. {
  3157. "id": "bd46984c4dcbf58c1ec0c47fcb49a61f24639b68",
  3158. "message": "tangtang\n",
  3159. "committer_name": "201850030",
  3160. "committer_email": "201850030@smail.nju.edu.cn",
  3161. "projectId": 779
  3162. },
  3163. {
  3164. "id": "57d1533650ccb53a67d1bf951f7288f4d0f05845",
  3165. "message": "tangtang\n",
  3166. "committer_name": "201850030",
  3167. "committer_email": "201850030@smail.nju.edu.cn",
  3168. "projectId": 779
  3169. },
  3170. {
  3171. "id": "ac582752da11e89d6598ca37505ffda17dfddf04",
  3172. "message": "fix: fixing on #201850030#,解决无法更新的bug\n",
  3173. "committer_name": "201850030",
  3174. "committer_email": "201850030@smail.nju.edu.cn",
  3175. "projectId": 779
  3176. },
  3177. {
  3178. "id": "3d97d7b7f13b99af38cb3483d42ca992cd05c529",
  3179. "message": "fix: fixing on #2615#,解决无法更新的bug\n",
  3180. "committer_name": "201850030",
  3181. "committer_email": "201850030@smail.nju.edu.cn",
  3182. "projectId": 779
  3183. },
  3184. {
  3185. "id": "5120a8b4b50b6dbbeb3b9d9224baa4b3d71340e8",
  3186. "message": "fix: fixing on #203#,解决无法更新的bug\n",
  3187. "committer_name": "201850030",
  3188. "committer_email": "201850030@smail.nju.edu.cn",
  3189. "projectId": 779
  3190. },
  3191. {
  3192. "id": "3c098c3b148e2d66573bbaf9cbb1d7515fa2f143",
  3193. "message": "fix: fix #203#,无法更新的bug已解决\n",
  3194. "committer_name": "201850030",
  3195. "committer_email": "201850030@smail.nju.edu.cn",
  3196. "projectId": 779
  3197. },
  3198. {
  3199. "id": "752a7e7ca600c8dd73a33a1811109f5a5759ac60",
  3200. "message": "fix: fix #203#,无法更新的bug已解决\n",
  3201. "committer_name": "201850030",
  3202. "committer_email": "201850030@smail.nju.edu.cn",
  3203. "projectId": 779
  3204. },
  3205. {
  3206. "id": "88827e02ebcd3c699d93d6cc1dddb8c46c394c05",
  3207. "message": "fix: fix #203#,无法更新的bug已解决\n",
  3208. "committer_name": "201850030",
  3209. "committer_email": "201850030@smail.nju.edu.cn",
  3210. "projectId": 779
  3211. }
  3212. ],
  3213. "28": [
  3214. {
  3215. "id": "29c8c159144119f03b7d6e535172ed63f29568c4",
  3216. "message": "Add README.md",
  3217. "committer_name": "201250139",
  3218. "committer_email": "876865565@qq.com",
  3219. "projectId": 661
  3220. },
  3221. {
  3222. "id": "9baed3e9bc6e626acac2b97e5a43fa73c0e971f7",
  3223. "message": "Update README.md",
  3224. "committer_name": "201250139",
  3225. "committer_email": "876865565@qq.com",
  3226. "projectId": 661
  3227. },
  3228. {
  3229. "id": "34133bd5d10d68b7f5149fcffdfffb75690bb499",
  3230. "message": "0.1 助教提供的代码\n",
  3231. "committer_name": "201250139",
  3232. "committer_email": "876865565@qq.com",
  3233. "projectId": 661
  3234. },
  3235. {
  3236. "id": "8498ae00f721141c047713867124d5de7694c5e6",
  3237. "message": "数据库\n",
  3238. "committer_name": "201250139",
  3239. "committer_email": "876865565@qq.com",
  3240. "projectId": 661
  3241. },
  3242. {
  3243. "id": "07116b4d12ede2d7bfc1774bad7ae59dd2a148e2",
  3244. "message": "后端0.1\n",
  3245. "committer_name": "201250139",
  3246. "committer_email": "876865565@qq.com",
  3247. "projectId": 661
  3248. },
  3249. {
  3250. "id": "172d9249d15b7ccd0c96dba0e28b59d5dc266bd0",
  3251. "message": "后端0.2\n",
  3252. "committer_name": "201250139",
  3253. "committer_email": "876865565@qq.com",
  3254. "projectId": 661
  3255. },
  3256. {
  3257. "id": "004d7472ac59acaaccbbee280ce0f10c08ef40f2",
  3258. "message": "Update application.yml\n0.21",
  3259. "committer_name": "201250139",
  3260. "committer_email": "876865565@qq.com",
  3261. "projectId": 661
  3262. },
  3263. {
  3264. "id": "3dff34d8123b78d9afdbeeafac79ef74afc28499",
  3265. "message": "后端0.21\n",
  3266. "committer_name": "201250139",
  3267. "committer_email": "876865565@qq.com",
  3268. "projectId": 661
  3269. },
  3270. {
  3271. "id": "3e07974d4d45a419791fc23121214d788ea8437b",
  3272. "message": "后端0.3 重新构建\n",
  3273. "committer_name": "201250139",
  3274. "committer_email": "876865565@qq.com",
  3275. "projectId": 661
  3276. },
  3277. {
  3278. "id": "4771e9e19e208c00b15d1c6bc935feb34c4821e7",
  3279. "message": "后端0.3 重新构建\n",
  3280. "committer_name": "201250139",
  3281. "committer_email": "876865565@qq.com",
  3282. "projectId": 661
  3283. },
  3284. {
  3285. "id": "e29122b51ebfe9c6cb809b524683e835015bb1c2",
  3286. "message": "0.51 restart\n",
  3287. "committer_name": "201250139",
  3288. "committer_email": "876865565@qq.com",
  3289. "projectId": 661
  3290. },
  3291. {
  3292. "id": "75bcc86c8069ae197d8ad04193072707f944e976",
  3293. "message": "0.52 restart\n",
  3294. "committer_name": "201250139",
  3295. "committer_email": "876865565@qq.com",
  3296. "projectId": 661
  3297. },
  3298. {
  3299. "id": "d24d8da3ba5c893f82b9c964e77f5d32796e0923",
  3300. "message": "0.53 yml\n",
  3301. "committer_name": "201250139",
  3302. "committer_email": "876865565@qq.com",
  3303. "projectId": 661
  3304. },
  3305. {
  3306. "id": "061ce46a8f11add1b685042cbfc676d5539fea37",
  3307. "message": "0.21,测试第二个bug\n",
  3308. "committer_name": "201250139",
  3309. "committer_email": "876865565@qq.com",
  3310. "projectId": 660
  3311. },
  3312. {
  3313. "id": "17125c826d80ed335d7942521c5648d9955cec64",
  3314. "message": "0.3,测试第二个bug\n",
  3315. "committer_name": "201250139",
  3316. "committer_email": "876865565@qq.com",
  3317. "projectId": 660
  3318. },
  3319. {
  3320. "id": "11974bbc29da8545769e42742680e78ec32239e5",
  3321. "message": "Merge remote-tracking branch 'origin/master'\n",
  3322. "committer_name": "201250139",
  3323. "committer_email": "876865565@qq.com",
  3324. "projectId": 660
  3325. },
  3326. {
  3327. "id": "0f0e52e3c590876c5edc0c42d22c4c7397c00125",
  3328. "message": "0.4,重构\n",
  3329. "committer_name": "201250139",
  3330. "committer_email": "876865565@qq.com",
  3331. "projectId": 660
  3332. },
  3333. {
  3334. "id": "5927127d26e5af298a1e3593e8380757bb407672",
  3335. "message": "0.41,重构\n",
  3336. "committer_name": "201250139",
  3337. "committer_email": "876865565@qq.com",
  3338. "projectId": 660
  3339. },
  3340. {
  3341. "id": "258ad1daa16ef86b6661df1fd5c230fa3ba76cc8",
  3342. "message": "0.42,重构\n",
  3343. "committer_name": "201250139",
  3344. "committer_email": "876865565@qq.com",
  3345. "projectId": 660
  3346. },
  3347. {
  3348. "id": "96cc4082982af95d8f6fc81408aa8e8adcf67ac5",
  3349. "message": "0.43,重构\n",
  3350. "committer_name": "201250139",
  3351. "committer_email": "876865565@qq.com",
  3352. "projectId": 660
  3353. },
  3354. {
  3355. "id": "de3b025128ad632041aff32b0f5ce817f9e75035",
  3356. "message": "0.43,重构\n",
  3357. "committer_name": "201250139",
  3358. "committer_email": "876865565@qq.com",
  3359. "projectId": 660
  3360. },
  3361. {
  3362. "id": "4943661986173ed307db6cca21fc7b926b1fd0d0",
  3363. "message": "0.43,重构\n",
  3364. "committer_name": "201250139",
  3365. "committer_email": "876865565@qq.com",
  3366. "projectId": 660
  3367. },
  3368. {
  3369. "id": "94d8ddef3ebd93c58cae8fce052b50fedeefdb32",
  3370. "message": "0.43,重构\n",
  3371. "committer_name": "201250139",
  3372. "committer_email": "876865565@qq.com",
  3373. "projectId": 660
  3374. },
  3375. {
  3376. "id": "b4ec86b8adb0c53da52f6d3f1eebc3c8350d4bb1",
  3377. "message": "0.5 restart\n",
  3378. "committer_name": "201250139",
  3379. "committer_email": "876865565@qq.com",
  3380. "projectId": 660
  3381. },
  3382. {
  3383. "id": "cd450b882e7752a44f23c8b41cadfcdfb0161ba0",
  3384. "message": "0.51 restart\n",
  3385. "committer_name": "201250139",
  3386. "committer_email": "876865565@qq.com",
  3387. "projectId": 660
  3388. },
  3389. {
  3390. "id": "479bd007afacc25f160ca486cb0b3ca7193165a9",
  3391. "message": "0.51 restart\n",
  3392. "committer_name": "201250139",
  3393. "committer_email": "876865565@qq.com",
  3394. "projectId": 660
  3395. },
  3396. {
  3397. "id": "c1cfd6bc9ee95defccf1d55eae709f992e65485b",
  3398. "message": "0.60 restart\n",
  3399. "committer_name": "201250139",
  3400. "committer_email": "876865565@qq.com",
  3401. "projectId": 660
  3402. },
  3403. {
  3404. "id": "d01ee6270e49fb8b569148faf018b5a458d3a2bc",
  3405. "message": "0.70 第一个bug\n",
  3406. "committer_name": "201250139",
  3407. "committer_email": "876865565@qq.com",
  3408. "projectId": 660
  3409. },
  3410. {
  3411. "id": "0a806eab02558d537f806f0b57bf8fa96ad467da",
  3412. "message": "add1\n",
  3413. "committer_name": "kaikaiweiS",
  3414. "committer_email": "81244451+kaikaiweiS@users.noreply.github.com",
  3415. "projectId": 660
  3416. },
  3417. {
  3418. "id": "4371d3b3d541ca51936550c273d7d1680d9b6d08",
  3419. "message": "Revert \"add1\"\n\nThis reverts commit 0a806eab02558d537f806f0b57bf8fa96ad467da.\n",
  3420. "committer_name": "kaikaiweiS",
  3421. "committer_email": "81244451+kaikaiweiS@users.noreply.github.com",
  3422. "projectId": 660
  3423. },
  3424. {
  3425. "id": "9dbd1168a452811d9d197ac3c7c6bd9527b8a4cc",
  3426. "message": "0.71 第一个bug\n",
  3427. "committer_name": "201250139",
  3428. "committer_email": "876865565@qq.com",
  3429. "projectId": 660
  3430. },
  3431. {
  3432. "id": "a669c33292df04e961bb986277acf7b5eb5552ff",
  3433. "message": "Merge remote-tracking branch 'origin/master'\n",
  3434. "committer_name": "201250139",
  3435. "committer_email": "876865565@qq.com",
  3436. "projectId": 660
  3437. },
  3438. {
  3439. "id": "28dc0cc287a12836edbf18954c85f2a41fac5ed7",
  3440. "message": "add1\n",
  3441. "committer_name": "kaikaiweiS",
  3442. "committer_email": "81244451+kaikaiweiS@users.noreply.github.com",
  3443. "projectId": 660
  3444. }
  3445. ],
  3446. "29": [
  3447. {
  3448. "id": "5516d9395997a9be8c8e2836e2aa1d1427fca862",
  3449. "message": "init\n",
  3450. "committer_name": "Tao Huang",
  3451. "committer_email": "1145851030@qq.com",
  3452. "projectId": 653
  3453. },
  3454. {
  3455. "id": "54ff1f0991af300abb7ca9691360071dad2b3f9e",
  3456. "message": "fix: fixing on #127#, 修改提交空title\n",
  3457. "committer_name": "somethingandone",
  3458. "committer_email": "95566363+somethingandone@users.noreply.github.com",
  3459. "projectId": 653
  3460. },
  3461. {
  3462. "id": "5ef6e7dd5ad62105c7eff12aad244f601b8f6aae",
  3463. "message": "fix: fixed #127#, 修改提交空title bug\n",
  3464. "committer_name": "YajiaLiu",
  3465. "committer_email": "201250115@smail.nju.edu.cn",
  3466. "projectId": 653
  3467. },
  3468. {
  3469. "id": "00419db0c72e1b515735aea47bf2af1aaaad8bd2",
  3470. "message": "Revert \"fix: fixing on #127#, 修改提交空title\"\n\nThis reverts commit 54ff1f09\n",
  3471. "committer_name": "YajiaLiu",
  3472. "committer_email": "201250115@smail.nju.edu.cn",
  3473. "projectId": 653
  3474. },
  3475. {
  3476. "id": "8e374e68b7c46f3cf5a5c14688bbd1459f019755",
  3477. "message": "fix: fixing on #127#, 修改提交空title加一\n",
  3478. "committer_name": "somethingandone",
  3479. "committer_email": "95566363+somethingandone@users.noreply.github.com",
  3480. "projectId": 653
  3481. },
  3482. {
  3483. "id": "9396ea143986dbc2e8ac38d8bbcdd941c575b47e",
  3484. "message": "fix: fixing on #127#, 修改提交空title加er\n",
  3485. "committer_name": "somethingandone",
  3486. "committer_email": "95566363+somethingandone@users.noreply.github.com",
  3487. "projectId": 653
  3488. },
  3489. {
  3490. "id": "baf1e943496a4c3878cd0dfde871c506e2e9794b",
  3491. "message": "fix: fix #127#, 提交空title的bug已解决\n",
  3492. "committer_name": "somethingandone",
  3493. "committer_email": "95566363+somethingandone@users.noreply.github.com",
  3494. "projectId": 653
  3495. },
  3496. {
  3497. "id": "46969e54702899d3f9a628500a0dedb5e2646bb4",
  3498. "message": "add Table.vue\n",
  3499. "committer_name": "YajiaLiu",
  3500. "committer_email": "201250115@smail.nju.edu.cn",
  3501. "projectId": 653
  3502. },
  3503. {
  3504. "id": "36c8566907babe0bf833a0f40341d5067c6e7694",
  3505. "message": "更新了Table\n",
  3506. "committer_name": "李佳骏",
  3507. "committer_email": "73824503+jiajun-lab@users.noreply.github.com",
  3508. "projectId": 653
  3509. },
  3510. {
  3511. "id": "181d3cb5fb6885d6303ea6d91b0c0ef98e2ed1ed",
  3512. "message": "优化了Table样式\n",
  3513. "committer_name": "李佳骏",
  3514. "committer_email": "73824503+jiajun-lab@users.noreply.github.com",
  3515. "projectId": 653
  3516. },
  3517. {
  3518. "id": "8b103b22f9babb94eea505a8be7c1f680cf5d932",
  3519. "message": "优化了Table样式*1\n",
  3520. "committer_name": "李佳骏",
  3521. "committer_email": "73824503+jiajun-lab@users.noreply.github.com",
  3522. "projectId": 653
  3523. },
  3524. {
  3525. "id": "3c8cca26c110ba702c9103be7b5c57f9869480e8",
  3526. "message": "fix: fix #151#, 提交空title的bug已解决\n",
  3527. "committer_name": "somethingandone",
  3528. "committer_email": "95566363+somethingandone@users.noreply.github.com",
  3529. "projectId": 653
  3530. },
  3531. {
  3532. "id": "67c2819320fac07fb856809fe028ea655b52dd98",
  3533. "message": "Merge remote-tracking branch 'origin/master'\n",
  3534. "committer_name": "somethingandone",
  3535. "committer_email": "95566363+somethingandone@users.noreply.github.com",
  3536. "projectId": 653
  3537. },
  3538. {
  3539. "id": "48776a113dcab7da00455c59629d5568c3aa2103",
  3540. "message": "add table\n",
  3541. "committer_name": "YajiaLiu",
  3542. "committer_email": "201250115@smail.nju.edu.cn",
  3543. "projectId": 653
  3544. },
  3545. {
  3546. "id": "41c9e9f5f81202c73f534f2e159d609a37a9ba3a",
  3547. "message": "add table again\n",
  3548. "committer_name": "YajiaLiu",
  3549. "committer_email": "201250115@smail.nju.edu.cn",
  3550. "projectId": 653
  3551. },
  3552. {
  3553. "id": "6dd76c4fb4a62a021a176edd1c5dcae3e6ea7cf3",
  3554. "message": "add table again\n",
  3555. "committer_name": "YajiaLiu",
  3556. "committer_email": "201250115@smail.nju.edu.cn",
  3557. "projectId": 653
  3558. },
  3559. {
  3560. "id": "44b9127a8e952f0a097d401a6f98832c4d833804",
  3561. "message": "init: 项目初始化\n",
  3562. "committer_name": "Tao Huang",
  3563. "committer_email": "1145851030@qq.com",
  3564. "projectId": 652
  3565. },
  3566. {
  3567. "id": "a658e77341f655f25c47d8007044161556a5bb60",
  3568. "message": "push\n",
  3569. "committer_name": "Tao Huang",
  3570. "committer_email": "1145851030@qq.com",
  3571. "projectId": 652
  3572. },
  3573. {
  3574. "id": "11eed602e5f3363fd4ce4341f9129083b958f8d0",
  3575. "message": "fix bug_1\n",
  3576. "committer_name": "YajiaLiu",
  3577. "committer_email": "201250115@smail.nju.edu.cn",
  3578. "projectId": 652
  3579. },
  3580. {
  3581. "id": "bcca55cb8c126523f86b79076553196f582f4a86",
  3582. "message": "fix: fix #120#, bug已修复\n",
  3583. "committer_name": "YajiaLiu",
  3584. "committer_email": "201250115@smail.nju.edu.cn",
  3585. "projectId": 652
  3586. }
  3587. ],
  3588. "30": [
  3589. {
  3590. "id": "5d1ad8f614c6b23c5eb6cc8abd89ae1fee795c42",
  3591. "message": "Initialization\n",
  3592. "committer_name": "NintenSAGA",
  3593. "committer_email": "358546067@qq.com",
  3594. "projectId": 722
  3595. },
  3596. {
  3597. "id": "d73ec9e8a76e6229d80a0dd1aad17eb1e7180b7b",
  3598. "message": "test\n",
  3599. "committer_name": "NintenSAGA",
  3600. "committer_email": "358546067@qq.com",
  3601. "projectId": 722
  3602. },
  3603. {
  3604. "id": "e07a4f7c3bfe39f855001ff07e2b1320a0188472",
  3605. "message": "Revert \"Initialization\"\n\nThis reverts commit 5d1ad8f6\n",
  3606. "committer_name": "NintenSAGA",
  3607. "committer_email": "358546067@qq.com",
  3608. "projectId": 722
  3609. },
  3610. {
  3611. "id": "3ea200df88c123b0e4445eab22bc8f769edb60fe",
  3612. "message": "Initialized\n",
  3613. "committer_name": "NintenSAGA",
  3614. "committer_email": "358546067@qq.com",
  3615. "projectId": 722
  3616. },
  3617. {
  3618. "id": "a18ca99983cff31080721cd616a25ec3a32a3480",
  3619. "message": "Initialized\n",
  3620. "committer_name": "NintenSAGA",
  3621. "committer_email": "358546067@qq.com",
  3622. "projectId": 722
  3623. },
  3624. {
  3625. "id": "d363342e408509a882a6be4fb824b9d955a4c072",
  3626. "message": "edited\n",
  3627. "committer_name": "NintenSAGA",
  3628. "committer_email": "358546067@qq.com",
  3629. "projectId": 722
  3630. },
  3631. {
  3632. "id": "8c113f3c3714b6b96c08d46ce50e784ea0e3245b",
  3633. "message": "edited1\n",
  3634. "committer_name": "NintenSAGA",
  3635. "committer_email": "358546067@qq.com",
  3636. "projectId": 722
  3637. },
  3638. {
  3639. "id": "fe3d0abe3d4a8287d43ce0ef21e09b516c127033",
  3640. "message": "edited2\n",
  3641. "committer_name": "NintenSAGA",
  3642. "committer_email": "358546067@qq.com",
  3643. "projectId": 722
  3644. },
  3645. {
  3646. "id": "17980f97942a29defba1308b639e21c7351aea9b",
  3647. "message": "edited2\n",
  3648. "committer_name": "NintenSAGA",
  3649. "committer_email": "358546067@qq.com",
  3650. "projectId": 722
  3651. },
  3652. {
  3653. "id": "8e1aef17f4523afc481bb3a4de42811c64b31a13",
  3654. "message": "edited2\n",
  3655. "committer_name": "NintenSAGA",
  3656. "committer_email": "358546067@qq.com",
  3657. "projectId": 722
  3658. },
  3659. {
  3660. "id": "5c0ba3f23c105cbe150343b564780dda1d969000",
  3661. "message": "edited2\n",
  3662. "committer_name": "NintenSAGA",
  3663. "committer_email": "358546067@qq.com",
  3664. "projectId": 722
  3665. },
  3666. {
  3667. "id": "4ac5fbdfa240da133a885f42b9d9a3a47b5c28f4",
  3668. "message": "edited2\n",
  3669. "committer_name": "NintenSAGA",
  3670. "committer_email": "358546067@qq.com",
  3671. "projectId": 722
  3672. },
  3673. {
  3674. "id": "b9f5c97af37fb5b2a9b11d82fbf2d6b997947578",
  3675. "message": "fix: fixing #162#, 修正空标题添加\n",
  3676. "committer_name": "NintenSAGA",
  3677. "committer_email": "358546067@qq.com",
  3678. "projectId": 722
  3679. },
  3680. {
  3681. "id": "334296d64d9fbdc2ca2dba37ac1b64a8e3c538a6",
  3682. "message": "fix: fixing on #162#, 修改空标题输入\n",
  3683. "committer_name": "NintenSAGA",
  3684. "committer_email": "358546067@qq.com",
  3685. "projectId": 722
  3686. },
  3687. {
  3688. "id": "0a2dc41bbb985fb9f81625f6b5c306687a3326ad",
  3689. "message": "Initialization\n",
  3690. "committer_name": "NintenSAGA",
  3691. "committer_email": "358546067@qq.com",
  3692. "projectId": 721
  3693. },
  3694. {
  3695. "id": "c7f39ce93c5b9158fcb6c5ef853bed1696806e92",
  3696. "message": "updated database info\n",
  3697. "committer_name": "NintenSAGA",
  3698. "committer_email": "358546067@qq.com",
  3699. "projectId": 721
  3700. },
  3701. {
  3702. "id": "0edd1e582c288212a1df083c421f77e43bac3f0b",
  3703. "message": "fix: fix #161#, 无法更新的bug已解决\n",
  3704. "committer_name": "NintenSAGA",
  3705. "committer_email": "358546067@qq.com",
  3706. "projectId": 721
  3707. },
  3708. {
  3709. "id": "f2102872f4f505634877a4a2aa53974d4cc3fc5e",
  3710. "message": "fix: fix #161#, 无法更新的bug已解决\n",
  3711. "committer_name": "NintenSAGA",
  3712. "committer_email": "358546067@qq.com",
  3713. "projectId": 721
  3714. }
  3715. ],
  3716. "31": [
  3717. {
  3718. "id": "a2810106f31d6b2d64ca6a7e56f1593260ad800f",
  3719. "message": "init\n",
  3720. "committer_name": "naya",
  3721. "committer_email": "1207445468@qq.com",
  3722. "projectId": 678
  3723. },
  3724. {
  3725. "id": "da3e6e9aeb967822e110696bffd9ba867b2cc6bc",
  3726. "message": "init\n",
  3727. "committer_name": "naya",
  3728. "committer_email": "1207445468@qq.com",
  3729. "projectId": 677
  3730. },
  3731. {
  3732. "id": "dfa22034a89cb290bd320ab0e0fcf041da08fdee",
  3733. "message": "modified yml\n",
  3734. "committer_name": "naya",
  3735. "committer_email": "1207445468@qq.com",
  3736. "projectId": 677
  3737. }
  3738. ],
  3739. "32": [
  3740. {
  3741. "id": "d29c2febb7afe521789d20b06f09949d0b974dee",
  3742. "message": "sql init\n",
  3743. "committer_name": "CDHZAYN",
  3744. "committer_email": "949135640@qq.com",
  3745. "projectId": 299
  3746. },
  3747. {
  3748. "id": "b954b4fe5f40110d833d1e6439390f82f9ab45de",
  3749. "message": "init test\n",
  3750. "committer_name": "CDHZAYN",
  3751. "committer_email": "949135640@qq.com",
  3752. "projectId": 298
  3753. }
  3754. ],
  3755. "33": [
  3756. {
  3757. "id": "ede227cae92fa991fefa1ce6d8e32b6c2511e848",
  3758. "message": "init:项目初始化\n",
  3759. "committer_name": "201870121",
  3760. "committer_email": "2382892143@qq.com",
  3761. "projectId": 844
  3762. },
  3763. {
  3764. "id": "1c379836a9d98849fc7e7a187ca5df32e35eb43c",
  3765. "message": "更改后端mysql配置\n",
  3766. "committer_name": "201870121",
  3767. "committer_email": "2382892143@qq.com",
  3768. "projectId": 844
  3769. },
  3770. {
  3771. "id": "f010f8e0c7864afe611dfb6eeec76e9363440294",
  3772. "message": "init:项目初始化\n",
  3773. "committer_name": "201870121",
  3774. "committer_email": "2382892143@qq.com",
  3775. "projectId": 843
  3776. },
  3777. {
  3778. "id": "35e03af3440075873967c3ea095849ec72190ffb",
  3779. "message": "前端增加了成员用户名和学号\n",
  3780. "committer_name": "201870121",
  3781. "committer_email": "2382892143@qq.com",
  3782. "projectId": 843
  3783. }
  3784. ],
  3785. "34": [
  3786. {
  3787. "id": "9f9f0d764262253b7e4f3d09d9b511a6df47d0a1",
  3788. "message": "init:项目初始化\n",
  3789. "committer_name": "201250065",
  3790. "committer_email": "1245345458@qq.com",
  3791. "projectId": 624
  3792. },
  3793. {
  3794. "id": "60344c0e511df9cd22baba00b6413a64d0835882",
  3795. "message": "init:项目初始化\n",
  3796. "committer_name": "201250065",
  3797. "committer_email": "1245345458@qq.com",
  3798. "projectId": 623
  3799. },
  3800. {
  3801. "id": "3f1137fc27749bc2fed3cc919b0d3e975d798c11",
  3802. "message": "1\n",
  3803. "committer_name": "201250065",
  3804. "committer_email": "1245345458@qq.com",
  3805. "projectId": 623
  3806. }
  3807. ],
  3808. "35": [
  3809. {
  3810. "id": "00d1355d7eae6141c761144b3adce45afad7e9fd",
  3811. "message": "00\n",
  3812. "committer_name": "濮江晖",
  3813. "committer_email": "2075795700@qq.com",
  3814. "projectId": 846
  3815. },
  3816. {
  3817. "id": "f8efb5e1637a5837e5d36f36ffbb7173fa3942b2",
  3818. "message": "000\n",
  3819. "committer_name": "濮江晖",
  3820. "committer_email": "2075795700@qq.com",
  3821. "projectId": 846
  3822. },
  3823. {
  3824. "id": "cae9e365921bf20412c19c2029e6acb4b847d9e5",
  3825. "message": "09\n",
  3826. "committer_name": "濮江晖",
  3827. "committer_email": "2075795700@qq.com",
  3828. "projectId": 846
  3829. },
  3830. {
  3831. "id": "160b79b0f4ccf63a7bd1eaa4fab3cb9de979a6a2",
  3832. "message": "10\n",
  3833. "committer_name": "濮江晖",
  3834. "committer_email": "2075795700@qq.com",
  3835. "projectId": 846
  3836. },
  3837. {
  3838. "id": "fbb252a58c33281107c6d0f05f60b70f35aad671",
  3839. "message": "11\n",
  3840. "committer_name": "濮江晖",
  3841. "committer_email": "2075795700@qq.com",
  3842. "projectId": 846
  3843. },
  3844. {
  3845. "id": "db58787dfcc5aab5108b7c6ed45b6874cf28cb08",
  3846. "message": "12\n",
  3847. "committer_name": "濮江晖",
  3848. "committer_email": "2075795700@qq.com",
  3849. "projectId": 846
  3850. },
  3851. {
  3852. "id": "ba3077a4a41c534f0da0b22327358ef611044592",
  3853. "message": "?\n",
  3854. "committer_name": "stanb",
  3855. "committer_email": "18852688016@139.com",
  3856. "projectId": 846
  3857. },
  3858. {
  3859. "id": "e8d423ce20331b84919b017f645d9dafb1b1b363",
  3860. "message": "Merge remote-tracking branch 'origin/master'\n",
  3861. "committer_name": "stanb",
  3862. "committer_email": "18852688016@139.com",
  3863. "projectId": 846
  3864. },
  3865. {
  3866. "id": "19c4925f01a509580bb31e74486819abd296aa4f",
  3867. "message": "why?\n",
  3868. "committer_name": "stanb",
  3869. "committer_email": "18852688016@139.com",
  3870. "projectId": 846
  3871. },
  3872. {
  3873. "id": "ec8b76f8963bcf5c23902913a1793ca36656f634",
  3874. "message": "go\n",
  3875. "committer_name": "ssx",
  3876. "committer_email": "2291886700@qq.com",
  3877. "projectId": 846
  3878. },
  3879. {
  3880. "id": "cfab01f066cace4b2cfbfcbb489c88dbb4025c7b",
  3881. "message": "Merge remote-tracking branch 'origin/master'\n\n# Conflicts:\n#\tsrc/components/Header.vue\n",
  3882. "committer_name": "ssx",
  3883. "committer_email": "2291886700@qq.com",
  3884. "projectId": 846
  3885. },
  3886. {
  3887. "id": "41db6ed2780e6bfd8d8d9f1f5dab966a6bbf4536",
  3888. "message": "12\n",
  3889. "committer_name": "濮江晖",
  3890. "committer_email": "2075795700@qq.com",
  3891. "projectId": 846
  3892. },
  3893. {
  3894. "id": "36c473b732c2624997ef1f19bf0b169e9fa77898",
  3895. "message": "45\n",
  3896. "committer_name": "濮江晖",
  3897. "committer_email": "2075795700@qq.com",
  3898. "projectId": 846
  3899. },
  3900. {
  3901. "id": "00a1c743c798225db37de8dffd0d753000b05f15",
  3902. "message": "go\n",
  3903. "committer_name": "ssx",
  3904. "committer_email": "2291886700@qq.com",
  3905. "projectId": 846
  3906. },
  3907. {
  3908. "id": "544b93c88683fdc46443900572fedb13281ad4d7",
  3909. "message": "Merge remote-tracking branch 'origin/master'\n",
  3910. "committer_name": "ssx",
  3911. "committer_email": "2291886700@qq.com",
  3912. "projectId": 846
  3913. },
  3914. {
  3915. "id": "6c82cf400f531432117857d73cc6829afcf39958",
  3916. "message": "go\n",
  3917. "committer_name": "ssx",
  3918. "committer_email": "2291886700@qq.com",
  3919. "projectId": 846
  3920. },
  3921. {
  3922. "id": "0c42aace7fa6be0256363179e4d22a987dd34c0c",
  3923. "message": "go again\n",
  3924. "committer_name": "ssx",
  3925. "committer_email": "2291886700@qq.com",
  3926. "projectId": 846
  3927. },
  3928. {
  3929. "id": "ae236b131977db88f4b13557aafc782808a4c17c",
  3930. "message": "go again again\n",
  3931. "committer_name": "ssx",
  3932. "committer_email": "2291886700@qq.com",
  3933. "projectId": 846
  3934. },
  3935. {
  3936. "id": "dc5a23ce9ddcfb5fc8a545eaf315ba843bb703bd",
  3937. "message": " again\n",
  3938. "committer_name": "ssx",
  3939. "committer_email": "2291886700@qq.com",
  3940. "projectId": 846
  3941. },
  3942. {
  3943. "id": "2bb926c4e33ffa06e27bfe610319bd1c62353d87",
  3944. "message": " again\n",
  3945. "committer_name": "ssx",
  3946. "committer_email": "2291886700@qq.com",
  3947. "projectId": 846
  3948. },
  3949. {
  3950. "id": "4761082212c8d3c8a3dc61a23be8611be0fdf582",
  3951. "message": "init: 项目初始化\n",
  3952. "committer_name": "ssx",
  3953. "committer_email": "2291886700@qq.com",
  3954. "projectId": 845
  3955. },
  3956. {
  3957. "id": "d1d2e74ba9e1c4eed075543f3efbab292d0b853e",
  3958. "message": "change database code\n",
  3959. "committer_name": "ssx",
  3960. "committer_email": "2291886700@qq.com",
  3961. "projectId": 845
  3962. },
  3963. {
  3964. "id": "e2ec697af422641781ac9130117722bb3a89c834",
  3965. "message": "fix: fixing on #142#, 修复状态更新\n",
  3966. "committer_name": "ssx",
  3967. "committer_email": "2291886700@qq.com",
  3968. "projectId": 845
  3969. },
  3970. {
  3971. "id": "344be88093a5ebd217d4299f27111413145379af",
  3972. "message": "try\n",
  3973. "committer_name": "stanb",
  3974. "committer_email": "18852688016@139.com",
  3975. "projectId": 845
  3976. },
  3977. {
  3978. "id": "cb4abf4936cc6eeb20bda8810763967d72bd39d2",
  3979. "message": "Merge remote-tracking branch 'origin/master'\n",
  3980. "committer_name": "stanb",
  3981. "committer_email": "18852688016@139.com",
  3982. "projectId": 845
  3983. }
  3984. ],
  3985. "36": [
  3986. {
  3987. "id": "c061b3a0f324e8f5e2d8f2a3d2d20886b8b19add",
  3988. "message": "init: 初始化\n",
  3989. "committer_name": "Zhao Yongzhen",
  3990. "committer_email": "icstorm2020@outlook.com",
  3991. "projectId": 925
  3992. },
  3993. {
  3994. "id": "4fa65f528cc76d4f144ee79801c1501b216a4360",
  3995. "message": "fix: fix #219#\n",
  3996. "committer_name": "Zhao Yongzhen",
  3997. "committer_email": "icstorm2020@outlook.com",
  3998. "projectId": 925
  3999. },
  4000. {
  4001. "id": "dd265ffb3c8a9e431500f44e948d456d6465512e",
  4002. "message": "fix: fix #218#\n",
  4003. "committer_name": "Zhao Yongzhen",
  4004. "committer_email": "icstorm2020@outlook.com",
  4005. "projectId": 925
  4006. },
  4007. {
  4008. "id": "7d5f9ec2e32553270cb0fd59aed3a3f321193996",
  4009. "message": "try\n",
  4010. "committer_name": "Zhao Yongzhen",
  4011. "committer_email": "icstorm2020@outlook.com",
  4012. "projectId": 925
  4013. },
  4014. {
  4015. "id": "26af48b441ecfc90b64503f208ffc8b61e98d0d2",
  4016. "message": "try\n",
  4017. "committer_name": "Zhao Yongzhen",
  4018. "committer_email": "icstorm2020@outlook.com",
  4019. "projectId": 925
  4020. },
  4021. {
  4022. "id": "3e0e7c2f71398cc85f5672351fd41541c9a661a0",
  4023. "message": "try\n",
  4024. "committer_name": "Zhao Yongzhen",
  4025. "committer_email": "icstorm2020@outlook.com",
  4026. "projectId": 925
  4027. },
  4028. {
  4029. "id": "9b46bf3b00f255690224d017f33368df28e8a963",
  4030. "message": "try\n",
  4031. "committer_name": "Zhao Yongzhen",
  4032. "committer_email": "icstorm2020@outlook.com",
  4033. "projectId": 925
  4034. },
  4035. {
  4036. "id": "9a7f689fbe0ac6bbedc11070cb396771140fed88",
  4037. "message": "try\n",
  4038. "committer_name": "Zhao Yongzhen",
  4039. "committer_email": "icstorm2020@outlook.com",
  4040. "projectId": 925
  4041. },
  4042. {
  4043. "id": "b0cf97220cc878c7e22f375b0a1afa2662f445d3",
  4044. "message": "try\n",
  4045. "committer_name": "Zhao Yongzhen",
  4046. "committer_email": "icstorm2020@outlook.com",
  4047. "projectId": 925
  4048. },
  4049. {
  4050. "id": "a7ec2fe5b5eb9f29fcf0e1919f6c6e65d3c70849",
  4051. "message": "try\n",
  4052. "committer_name": "Zhao Yongzhen",
  4053. "committer_email": "icstorm2020@outlook.com",
  4054. "projectId": 925
  4055. },
  4056. {
  4057. "id": "5583db64b9dca08e9abdd0d5d1a8cca07df0f631",
  4058. "message": "try\n",
  4059. "committer_name": "Zhao Yongzhen",
  4060. "committer_email": "icstorm2020@outlook.com",
  4061. "projectId": 925
  4062. },
  4063. {
  4064. "id": "a1afc1316e391abb24ce00ce40b1ceee70bc0410",
  4065. "message": "try\n",
  4066. "committer_name": "Zhao Yongzhen",
  4067. "committer_email": "icstorm2020@outlook.com",
  4068. "projectId": 925
  4069. },
  4070. {
  4071. "id": "4e20c3ec79e29313a148084dbfbd8c041119b094",
  4072. "message": "try\n",
  4073. "committer_name": "Zhao Yongzhen",
  4074. "committer_email": "icstorm2020@outlook.com",
  4075. "projectId": 925
  4076. },
  4077. {
  4078. "id": "e72dafea73ed198a199b9364de31739925999b58",
  4079. "message": "try\n",
  4080. "committer_name": "Zhao Yongzhen",
  4081. "committer_email": "icstorm2020@outlook.com",
  4082. "projectId": 925
  4083. },
  4084. {
  4085. "id": "58b3bf00cf184c311d868b7668add269adec52c5",
  4086. "message": "try\n",
  4087. "committer_name": "Zhao Yongzhen",
  4088. "committer_email": "icstorm2020@outlook.com",
  4089. "projectId": 925
  4090. },
  4091. {
  4092. "id": "a274b550d62580c4350614ce4a28a63ab81cc858",
  4093. "message": "over\n",
  4094. "committer_name": "Zhao Yongzhen",
  4095. "committer_email": "icstorm2020@outlook.com",
  4096. "projectId": 925
  4097. },
  4098. {
  4099. "id": "e1dd06966311f82d1bb7907389f3bda3b7efc31b",
  4100. "message": "over\n",
  4101. "committer_name": "Zhao Yongzhen",
  4102. "committer_email": "icstorm2020@outlook.com",
  4103. "projectId": 925
  4104. },
  4105. {
  4106. "id": "79a7894e1c4e9b881923b8807bc11e92a8d4e764",
  4107. "message": "init:初始化\n",
  4108. "committer_name": "Zhao Yongzhen",
  4109. "committer_email": "icstorm2020@outlook.com",
  4110. "projectId": 924
  4111. },
  4112. {
  4113. "id": "49415ea31759c17c89fedd89f9d448329b78501d",
  4114. "message": "配置mysql数据库\n",
  4115. "committer_name": "zyx",
  4116. "committer_email": "370349370@qq.com",
  4117. "projectId": 924
  4118. },
  4119. {
  4120. "id": "1dd5184269a35f062600baee232c767be55fd22b",
  4121. "message": "修改配置\n",
  4122. "committer_name": "zyx",
  4123. "committer_email": "370349370@qq.com",
  4124. "projectId": 924
  4125. },
  4126. {
  4127. "id": "7bd254493172c5ed21e462b55e115bde635ba88b",
  4128. "message": "死吧\n",
  4129. "committer_name": "zyx",
  4130. "committer_email": "370349370@qq.com",
  4131. "projectId": 924
  4132. },
  4133. {
  4134. "id": "475a227b42490c6d4a28e44a92b7268fe5c17360",
  4135. "message": "修改了无法更新状态的后端BUG\n",
  4136. "committer_name": "zyx",
  4137. "committer_email": "370349370@qq.com",
  4138. "projectId": 924
  4139. }
  4140. ],
  4141. "37": [
  4142. {
  4143. "id": "4f494ce241a60fb9d9b635d2974c68e3f1e09a38",
  4144. "message": "init: 项⽬初始化\n",
  4145. "committer_name": "yinzihang",
  4146. "committer_email": "201250173@smail.nju.edu.cn",
  4147. "projectId": 940
  4148. },
  4149. {
  4150. "id": "75bfc569dd2515fe31935e9f65df594862b6244d",
  4151. "message": "fix: fix #233#, 提交空title的bug已解决\n",
  4152. "committer_name": "yinzihang",
  4153. "committer_email": "201250173@smail.nju.edu.cn",
  4154. "projectId": 940
  4155. },
  4156. {
  4157. "id": "d4fa4dc4a7776181b35d54ffafeb8bcdb13e2c11",
  4158. "message": "初始提交\n",
  4159. "committer_name": "WBW2333",
  4160. "committer_email": "wbw2333@WBW2333deMacBook-Pro.local",
  4161. "projectId": 889
  4162. },
  4163. {
  4164. "id": "4a8eb1d416ed392a2312f55b0d9811e063c71408",
  4165. "message": "fix: fixing on #223#, 提交空title的bug已解决\n",
  4166. "committer_name": "yinzihang",
  4167. "committer_email": "201250173@smail.nju.edu.cn",
  4168. "projectId": 889
  4169. },
  4170. {
  4171. "id": "3ea1858f031286e0a1ee992b09a037731e8f11ad",
  4172. "message": "fix: fixing on #223#, 提交空title的bug正在解决\n",
  4173. "committer_name": "yinzihang",
  4174. "committer_email": "201250173@smail.nju.edu.cn",
  4175. "projectId": 889
  4176. },
  4177. {
  4178. "id": "70d60cff0935a6413a6447043a421b34dd854c28",
  4179. "message": "恢复\n",
  4180. "committer_name": "yinzihang",
  4181. "committer_email": "201250173@smail.nju.edu.cn",
  4182. "projectId": 889
  4183. },
  4184. {
  4185. "id": "be036c113c39e43b557bfdfa9ff9b9446fcb28a4",
  4186. "message": "Merge remote-tracking branch 'origin/main'\n",
  4187. "committer_name": "yinzihang",
  4188. "committer_email": "201250173@smail.nju.edu.cn",
  4189. "projectId": 889
  4190. },
  4191. {
  4192. "id": "8ed8fd6ae6efb8aa0739eeff26bd418e61822d26",
  4193. "message": "恢复\n",
  4194. "committer_name": "yinzihang",
  4195. "committer_email": "201250173@smail.nju.edu.cn",
  4196. "projectId": 889
  4197. },
  4198. {
  4199. "id": "88dc2df7fecd720e9eedec662a411ed6d3cc219c",
  4200. "message": "恢复\n",
  4201. "committer_name": "yinzihang",
  4202. "committer_email": "201250173@smail.nju.edu.cn",
  4203. "projectId": 889
  4204. },
  4205. {
  4206. "id": "e2b89dbde5affdb2be7be5c1143666112328fc82",
  4207. "message": "恢复\n",
  4208. "committer_name": "yinzihang",
  4209. "committer_email": "201250173@smail.nju.edu.cn",
  4210. "projectId": 889
  4211. },
  4212. {
  4213. "id": "b4988f4cc184f35016d5382d762392cac878f12a",
  4214. "message": "Merge remote-tracking branch 'origin/main'\n",
  4215. "committer_name": "yinzihang",
  4216. "committer_email": "201250173@smail.nju.edu.cn",
  4217. "projectId": 889
  4218. },
  4219. {
  4220. "id": "5862233a143b36262b328d6a6e43e9de73b8f9ec",
  4221. "message": "初始提交\n",
  4222. "committer_name": "WBW2333",
  4223. "committer_email": "wbw2333@WBW2333deMacBook-Pro.local",
  4224. "projectId": 888
  4225. },
  4226. {
  4227. "id": "30088efdc6bb226912ee6d0f03d37558b285debc",
  4228. "message": "4.3.1后端代码链接第一次部署的数据库\n",
  4229. "committer_name": "WBW2333",
  4230. "committer_email": "wbw2333@WBW2333deMacBook-Pro.local",
  4231. "projectId": 888
  4232. }
  4233. ],
  4234. "38": [
  4235. {
  4236. "id": "5dac90e2d8ee60f75bfa4e4bb5a5e35675a4cf8d",
  4237. "message": "init: 项⽬初始化\n",
  4238. "committer_name": "201250094",
  4239. "committer_email": "201250094@smail.nju.edu.cn",
  4240. "projectId": 723
  4241. },
  4242. {
  4243. "id": "9e508b19fa61c9da8b82bafcc23197cd9d9cebcb",
  4244. "message": "hello world\n",
  4245. "committer_name": "201250094",
  4246. "committer_email": "201250094@smail.nju.edu.cn",
  4247. "projectId": 723
  4248. },
  4249. {
  4250. "id": "df1247cc83a7fc6f11d9f370e5d1939782bf5fc7",
  4251. "message": "\" \"\n",
  4252. "committer_name": "201250095",
  4253. "committer_email": "0827_cyj",
  4254. "projectId": 723
  4255. },
  4256. {
  4257. "id": "82afca149dd3e433018872a4d8fd5c85361a2828",
  4258. "message": "\"version2\"\n",
  4259. "committer_name": "201250095",
  4260. "committer_email": "0827_cyj",
  4261. "projectId": 723
  4262. },
  4263. {
  4264. "id": "933a7a13bb6c1074d4b591f537b99eb1e2805f52",
  4265. "message": "\"version2\"\n",
  4266. "committer_name": "201250095",
  4267. "committer_email": "0827_cyj",
  4268. "projectId": 723
  4269. },
  4270. {
  4271. "id": "aecdd844b5d8dd37d84c902d9b9441e6f2b6c1ff",
  4272. "message": "fix: fix #110#\n",
  4273. "committer_name": "201250095",
  4274. "committer_email": "0827_cyj",
  4275. "projectId": 723
  4276. },
  4277. {
  4278. "id": "2dea1f371c5b4d27b30db881d342c7615ebe2fbf",
  4279. "message": "fix: fix #109#\n",
  4280. "committer_name": "201250095",
  4281. "committer_email": "0827_cyj",
  4282. "projectId": 723
  4283. },
  4284. {
  4285. "id": "34a2234759a5c05a8b0424308b178e5bb3fd55fd",
  4286. "message": "添加组员信息\n",
  4287. "committer_name": "201250095",
  4288. "committer_email": "0827_cyj",
  4289. "projectId": 723
  4290. },
  4291. {
  4292. "id": "1ffac70bb5dfbfbc16bcd1e85a6c94af89daf536",
  4293. "message": "init: 项⽬初始化\n",
  4294. "committer_name": "201250094",
  4295. "committer_email": "201250094@smail.nju.edu.cn",
  4296. "projectId": 715
  4297. },
  4298. {
  4299. "id": "d66c9991c4fb41f50cbaf7ce84c50468e5e03985",
  4300. "message": "4.3.1\n",
  4301. "committer_name": "201250094",
  4302. "committer_email": "201250094@smail.nju.edu.cn",
  4303. "projectId": 715
  4304. },
  4305. {
  4306. "id": "14a0b252f943bdd83b90766cebd08277d1d40c91",
  4307. "message": "modify url\n",
  4308. "committer_name": "201250094",
  4309. "committer_email": "201250094@smail.nju.edu.cn",
  4310. "projectId": 715
  4311. },
  4312. {
  4313. "id": "8aff3125680b15ba3cf6b8add13b70d0ff9f1b25",
  4314. "message": "fix: fix #108#\n",
  4315. "committer_name": "201250094",
  4316. "committer_email": "201250094@smail.nju.edu.cn",
  4317. "projectId": 715
  4318. },
  4319. {
  4320. "id": "bbef9cf6b2239e8681593d2ef9f38f24bbec7918",
  4321. "message": "not fix\n",
  4322. "committer_name": "201250094",
  4323. "committer_email": "201250094@smail.nju.edu.cn",
  4324. "projectId": 715
  4325. },
  4326. {
  4327. "id": "c33c5f957b0e3a2f15894966fe80e1017e531674",
  4328. "message": "turn isComplete\n",
  4329. "committer_name": "201250094",
  4330. "committer_email": "201250094@smail.nju.edu.cn",
  4331. "projectId": 715
  4332. },
  4333. {
  4334. "id": "4d779523705fa77eec171606b631138df7cc3297",
  4335. "message": "test for 1\n",
  4336. "committer_name": "201250094",
  4337. "committer_email": "201250094@smail.nju.edu.cn",
  4338. "projectId": 715
  4339. },
  4340. {
  4341. "id": "97ec514bcfdd312cd623c3e8b90c822a4af6d250",
  4342. "message": "fix: fix #108#\n",
  4343. "committer_name": "201250094",
  4344. "committer_email": "201250094@smail.nju.edu.cn",
  4345. "projectId": 715
  4346. }
  4347. ],
  4348. "39": [
  4349. {
  4350. "id": "cc64cd49fb1dd1bdb5feb6aec9aca1824351d7b8",
  4351. "message": "init:项目初始化\n",
  4352. "committer_name": "LUO",
  4353. "committer_email": "2606286483@qq.com",
  4354. "projectId": 737
  4355. },
  4356. {
  4357. "id": "4cfa5a0e74add5e4129a0b20d0a1472a6797b061",
  4358. "message": "清空\n",
  4359. "committer_name": "LUO",
  4360. "committer_email": "2606286483@qq.com",
  4361. "projectId": 737
  4362. },
  4363. {
  4364. "id": "a185df8ddb6f05a86558160dfc211fc3814c288c",
  4365. "message": "init:项目初始化\n",
  4366. "committer_name": "LUO",
  4367. "committer_email": "2606286483@qq.com",
  4368. "projectId": 737
  4369. },
  4370. {
  4371. "id": "d01a067954d54e47363c53a92427e40a41f5bf8a",
  4372. "message": "feat: complete #2331#\n",
  4373. "committer_name": "Lian jianheng",
  4374. "committer_email": "583761743@qq.com",
  4375. "projectId": 737
  4376. },
  4377. {
  4378. "id": "588d6c0bde0b6587ed03ff9688b2618457127566",
  4379. "message": "do some thing unuseful\n",
  4380. "committer_name": "Lian jianheng",
  4381. "committer_email": "583761743@qq.com",
  4382. "projectId": 737
  4383. },
  4384. {
  4385. "id": "83ae07bf032663a2b1e9192dcfc600d4fe86efd0",
  4386. "message": "make a bug\n",
  4387. "committer_name": "Lian jianheng",
  4388. "committer_email": "583761743@qq.com",
  4389. "projectId": 737
  4390. },
  4391. {
  4392. "id": "ad62b90b1e97228439fdfe3c8a374272fa166cf4",
  4393. "message": "init:项目初始化\n",
  4394. "committer_name": "LUO",
  4395. "committer_email": "2606286483@qq.com",
  4396. "projectId": 735
  4397. },
  4398. {
  4399. "id": "2ce07d7d4b6d6a986941d8dd3338834bed91b7e6",
  4400. "message": "mysql配置\n",
  4401. "committer_name": "LUO",
  4402. "committer_email": "2606286483@qq.com",
  4403. "projectId": 735
  4404. },
  4405. {
  4406. "id": "dee421ffd17692dd8e7ae069ed88a6506986884d",
  4407. "message": "feat: complete #2239#\n",
  4408. "committer_name": "Lian jianheng",
  4409. "committer_email": "583761743@qq.com",
  4410. "projectId": 735
  4411. },
  4412. {
  4413. "id": "90a2573a50a7f618423531ea2a3ef33a1b4c6886",
  4414. "message": "\"Finsih backend\"\n",
  4415. "committer_name": "Lian jianheng",
  4416. "committer_email": "583761743@qq.com",
  4417. "projectId": 735
  4418. }
  4419. ],
  4420. "40": [
  4421. {
  4422. "id": "9bfd5df761d5b345e70bcef005e08199c6b09952",
  4423. "message": "init: 前端项目初始化\n",
  4424. "committer_name": "201250071",
  4425. "committer_email": "1870456091@qq.com",
  4426. "projectId": 787
  4427. },
  4428. {
  4429. "id": "ac3ed8f4191b0a4897d7795923fe8326ea46c586",
  4430. "message": "init: 后端项目初始化\n",
  4431. "committer_name": "201250071",
  4432. "committer_email": "1870456091@qq.com",
  4433. "projectId": 786
  4434. },
  4435. {
  4436. "id": "c2b689483096bcba1d85e1fd7fb7a5656b2df415",
  4437. "message": "init: 后端项目初始化\n",
  4438. "committer_name": "201250071",
  4439. "committer_email": "1870456091@qq.com",
  4440. "projectId": 786
  4441. },
  4442. {
  4443. "id": "627c3793dffdf8396790cbca26baea7eff2647d3",
  4444. "message": "123\n",
  4445. "committer_name": "201250229",
  4446. "committer_email": "201250229@smail.nju.edu.cn",
  4447. "projectId": 786
  4448. }
  4449. ],
  4450. "41": [
  4451. {
  4452. "id": "83627be18c98f0412483c6cb1681260bacefaece",
  4453. "message": "init: 后端项目初始化\n",
  4454. "committer_name": "sunxiao",
  4455. "committer_email": "2375367814@qq.com",
  4456. "projectId": 704
  4457. },
  4458. {
  4459. "id": "da1aa8a0dce2ca5db73aa6445a2ad24a49e0a256",
  4460. "message": "init:后端项目初始化\n",
  4461. "committer_name": "sunxiao",
  4462. "committer_email": "2375367814@qq.com",
  4463. "projectId": 704
  4464. },
  4465. {
  4466. "id": "18779e00c899f42beca819e59c3ca244b9f92bbe",
  4467. "message": "init:前端项目初始化\n",
  4468. "committer_name": "sunxiao",
  4469. "committer_email": "2375367814@qq.com",
  4470. "projectId": 704
  4471. },
  4472. {
  4473. "id": "1ca0622c544e9be45e446f7a82e2ceb0f4c91a14",
  4474. "message": "remove folder and file list\n",
  4475. "committer_name": "sunxiao",
  4476. "committer_email": "2375367814@qq.com",
  4477. "projectId": 704
  4478. },
  4479. {
  4480. "id": "3505c7328d5df676c1e2570632172d6e8fb661e2",
  4481. "message": "前端项目初始化\n",
  4482. "committer_name": "sunxiao",
  4483. "committer_email": "2375367814@qq.com",
  4484. "projectId": 704
  4485. },
  4486. {
  4487. "id": "20944c269d0b7a1dd5dd9ec117de81845287eaf4",
  4488. "message": "have a try\n",
  4489. "committer_name": "sunxiao",
  4490. "committer_email": "2375367814@qq.com",
  4491. "projectId": 704
  4492. },
  4493. {
  4494. "id": "dfbca65fdf7c6830c3982a7656450cdeb6f32ac4",
  4495. "message": "try\n",
  4496. "committer_name": "sunxiao",
  4497. "committer_email": "2375367814@qq.com",
  4498. "projectId": 704
  4499. },
  4500. {
  4501. "id": "aa0895da04d9dc3c1b33c5fbc22039099aba98a9",
  4502. "message": "fix:fix #114#,title为空时不报错的bug已解决\n",
  4503. "committer_name": "tjy889",
  4504. "committer_email": "tangjunyin2002@163.com",
  4505. "projectId": 704
  4506. },
  4507. {
  4508. "id": "83627be18c98f0412483c6cb1681260bacefaece",
  4509. "message": "init: 后端项目初始化\n",
  4510. "committer_name": "sunxiao",
  4511. "committer_email": "2375367814@qq.com",
  4512. "projectId": 703
  4513. },
  4514. {
  4515. "id": "da1aa8a0dce2ca5db73aa6445a2ad24a49e0a256",
  4516. "message": "init:后端项目初始化\n",
  4517. "committer_name": "sunxiao",
  4518. "committer_email": "2375367814@qq.com",
  4519. "projectId": 703
  4520. },
  4521. {
  4522. "id": "18779e00c899f42beca819e59c3ca244b9f92bbe",
  4523. "message": "init:前端项目初始化\n",
  4524. "committer_name": "sunxiao",
  4525. "committer_email": "2375367814@qq.com",
  4526. "projectId": 703
  4527. },
  4528. {
  4529. "id": "69b24a73ae4630445f89ea139c859997827c15ea",
  4530. "message": "remove folder and file list\n",
  4531. "committer_name": "sunxiao",
  4532. "committer_email": "2375367814@qq.com",
  4533. "projectId": 703
  4534. },
  4535. {
  4536. "id": "516c98339f7060568b21b6a780c65d43ff81c427",
  4537. "message": "init: 项目初始化\n",
  4538. "committer_name": "sunxiao",
  4539. "committer_email": "2375367814@qq.com",
  4540. "projectId": 703
  4541. },
  4542. {
  4543. "id": "843c944e9d64c31e046132e2b8aeebf56d411b8a",
  4544. "message": "fix: fix #91#, 无法更新的bug已解决\n",
  4545. "committer_name": "sunxiao",
  4546. "committer_email": "2375367814@qq.com",
  4547. "projectId": 703
  4548. },
  4549. {
  4550. "id": "9fbe4f2478ece1bceb720e9b074baeb1ca5a9672",
  4551. "message": "fix: fix #118#, 无法更新的bug已解决\n",
  4552. "committer_name": "sunxiao",
  4553. "committer_email": "2375367814@qq.com",
  4554. "projectId": 703
  4555. }
  4556. ],
  4557. "42": [
  4558. {
  4559. "id": "e05ac44f2a6942d8f973eb5e5e857c697dc484ea",
  4560. "message": "init:项目初始化\n",
  4561. "committer_name": "201250119",
  4562. "committer_email": "201250119@smail.nju.edu.cn",
  4563. "projectId": 728
  4564. },
  4565. {
  4566. "id": "c133956d5712d23988cc7953311e41ced0143407",
  4567. "message": "fix: fix #198#, now the title could not be empty.\n",
  4568. "committer_name": "Led",
  4569. "committer_email": "Bluesbreaker@smail.nju.edu.cn",
  4570. "projectId": 728
  4571. },
  4572. {
  4573. "id": "37cff429b9a4400f228b31637a43ce3f1abc2ffa",
  4574. "message": "fix: fixing on#198#, cannot fix, come back to original.\n",
  4575. "committer_name": "Led",
  4576. "committer_email": "Bluesbreaker@smail.nju.edu.cn",
  4577. "projectId": 728
  4578. },
  4579. {
  4580. "id": "d15f0b1a9a13690dea5b7e89e5340d24cc5708a1",
  4581. "message": "fix: fix#198#,\n",
  4582. "committer_name": "Led",
  4583. "committer_email": "Bluesbreaker@smail.nju.edu.cn",
  4584. "projectId": 728
  4585. },
  4586. {
  4587. "id": "6591f8c370cc20950b3ae7b89a7a906f65781f72",
  4588. "message": "want to go back to init.\n",
  4589. "committer_name": "Led",
  4590. "committer_email": "Bluesbreaker@smail.nju.edu.cn",
  4591. "projectId": 728
  4592. },
  4593. {
  4594. "id": "94e35c3b93853b10e76e0187b95759202baf5bac",
  4595. "message": "fix: fix#198#,\n",
  4596. "committer_name": "Led",
  4597. "committer_email": "Bluesbreaker@smail.nju.edu.cn",
  4598. "projectId": 728
  4599. },
  4600. {
  4601. "id": "b9e9c3bd153341b9d09842d802b2403b20f52b96",
  4602. "message": "if else\n",
  4603. "committer_name": "Led",
  4604. "committer_email": "Bluesbreaker@smail.nju.edu.cn",
  4605. "projectId": 728
  4606. },
  4607. {
  4608. "id": "11650f27f2547f9985ff06b17e46a6e30251ef1d",
  4609. "message": "init\n",
  4610. "committer_name": "201250119",
  4611. "committer_email": "201250119@smail.nju.edu.cn",
  4612. "projectId": 727
  4613. },
  4614. {
  4615. "id": "d2a5eca675fc3680f7efb62e376712000a93a535",
  4616. "message": "url of database is added to application.yml\n",
  4617. "committer_name": "Led",
  4618. "committer_email": "Bluesbreaker@smail.nju.edu.cn",
  4619. "projectId": 727
  4620. },
  4621. {
  4622. "id": "7ac456c440c6d5e3f3f2543ae966f1487680064a",
  4623. "message": "fix url bug in application.yml\n",
  4624. "committer_name": "Led",
  4625. "committer_email": "Bluesbreaker@smail.nju.edu.cn",
  4626. "projectId": 727
  4627. },
  4628. {
  4629. "id": "b31f282acca798772d4e2699c726150284859aa9",
  4630. "message": "fix: fix #197#, isCompleted is used in the method.\n",
  4631. "committer_name": "Led",
  4632. "committer_email": "Bluesbreaker@smail.nju.edu.cn",
  4633. "projectId": 727
  4634. },
  4635. {
  4636. "id": "61fb4a3ecbf62bef6129b98b6a1ac752b1e4daee",
  4637. "message": "try negative\n",
  4638. "committer_name": "Led",
  4639. "committer_email": "Bluesbreaker@smail.nju.edu.cn",
  4640. "projectId": 727
  4641. }
  4642. ],
  4643. "43": [
  4644. {
  4645. "id": "fadeebb42d5cf116148c1d7d6a9234f54ad9a197",
  4646. "message": "init:前端项目初始化\n",
  4647. "committer_name": "201250109",
  4648. "committer_email": "201250109@smail.nju.edu.cn",
  4649. "projectId": 795
  4650. },
  4651. {
  4652. "id": "6aea2a485f563d552ba5f235b71b5a03acf52369",
  4653. "message": "在Header.vue中添加了条件语句\n",
  4654. "committer_name": "201250109",
  4655. "committer_email": "201250109@smail.nju.edu.cn",
  4656. "projectId": 795
  4657. },
  4658. {
  4659. "id": "bf520dfd2d13401fe7bbf50185ae0652fab5b783",
  4660. "message": "在Header.vue中测试git push是否有效\n",
  4661. "committer_name": "201250109",
  4662. "committer_email": "201250109@smail.nju.edu.cn",
  4663. "projectId": 795
  4664. },
  4665. {
  4666. "id": "874a2a8d623c9e3ecbd824fda24b20b540507dac",
  4667. "message": "在Header.vue中进行改动观察变化\n",
  4668. "committer_name": "201250109",
  4669. "committer_email": "201250109@smail.nju.edu.cn",
  4670. "projectId": 795
  4671. },
  4672. {
  4673. "id": "86ac0cb8f6ed9ebdf81f971ce528bd8a28d20fc9",
  4674. "message": "在Header.vue中加入条件\n",
  4675. "committer_name": "201250109",
  4676. "committer_email": "201250109@smail.nju.edu.cn",
  4677. "projectId": 795
  4678. },
  4679. {
  4680. "id": "373edfcb8afda7834f347818a528d8c238905fa0",
  4681. "message": "在Header.vue中测试是否有成功提交\n",
  4682. "committer_name": "201250109",
  4683. "committer_email": "201250109@smail.nju.edu.cn",
  4684. "projectId": 795
  4685. },
  4686. {
  4687. "id": "e4d1d6ec30c67ed2841d592e2094b6daa3d4c5e7",
  4688. "message": "none\n",
  4689. "committer_name": "201250109",
  4690. "committer_email": "201250109@smail.nju.edu.cn",
  4691. "projectId": 795
  4692. },
  4693. {
  4694. "id": "a3b9478cf1658c9ba5e1071cdef38bd6daf5a2c0",
  4695. "message": "添加小组成员信息\n",
  4696. "committer_name": "201250109",
  4697. "committer_email": "201250109@smail.nju.edu.cn",
  4698. "projectId": 795
  4699. },
  4700. {
  4701. "id": "a66838c9966ab69953e3c08c539147ef0754428f",
  4702. "message": "添加小组成员信息表格\n",
  4703. "committer_name": "201250109",
  4704. "committer_email": "201250109@smail.nju.edu.cn",
  4705. "projectId": 795
  4706. },
  4707. {
  4708. "id": "a4ae9369880662937c1bfb143d6d0f4de02de2f2",
  4709. "message": "小组信息\n",
  4710. "committer_name": "201250109",
  4711. "committer_email": "201250109@smail.nju.edu.cn",
  4712. "projectId": 795
  4713. },
  4714. {
  4715. "id": "2eb5f220884c1c74ef9a8bc8aad6d6200ffb3c9e",
  4716. "message": "init: 后端项目初始化\n",
  4717. "committer_name": "zhaoxingrui",
  4718. "committer_email": "171250598@smail.nju.edu.cn",
  4719. "projectId": 794
  4720. },
  4721. {
  4722. "id": "dde0f3ee35eab6b7b46f8c349c35a6f1a7af50f4",
  4723. "message": "fix: 更改mysql配置\n",
  4724. "committer_name": "zhaoxingrui",
  4725. "committer_email": "171250598@smail.nju.edu.cn",
  4726. "projectId": 794
  4727. },
  4728. {
  4729. "id": "d3f0dfde5e3981597136797e50239ea595b400d0",
  4730. "message": "fix: 修改mysql配置\n",
  4731. "committer_name": "zhaoxingrui",
  4732. "committer_email": "171250598@smail.nju.edu.cn",
  4733. "projectId": 794
  4734. },
  4735. {
  4736. "id": "283699d1902bd2dbc82f70f84729055edca791a7",
  4737. "message": "feat: working on #1560#, 添加新任务service完成\n",
  4738. "committer_name": "zhaoxingrui",
  4739. "committer_email": "171250598@smail.nju.edu.cn",
  4740. "projectId": 794
  4741. },
  4742. {
  4743. "id": "4d40688b7576796bc511df963ff3fd9e154e2001",
  4744. "message": "feat: complete #1561#, 删除任务相关代码完成\n",
  4745. "committer_name": "zhaoxingrui",
  4746. "committer_email": "171250598@smail.nju.edu.cn",
  4747. "projectId": 794
  4748. },
  4749. {
  4750. "id": "5e3ef814ba97e4ef5ec5ad86a159e38e6c4d1a77",
  4751. "message": "fix: 修改lab1\n",
  4752. "committer_name": "zhaoxingrui",
  4753. "committer_email": "171250598@smail.nju.edu.cn",
  4754. "projectId": 794
  4755. },
  4756. {
  4757. "id": "885b4243e42c46707592ad9a64e559c978e7816e",
  4758. "message": "fix:\n",
  4759. "committer_name": "zhaoxingrui",
  4760. "committer_email": "171250598@smail.nju.edu.cn",
  4761. "projectId": 794
  4762. },
  4763. {
  4764. "id": "67ed95d012397c596f8e73bb6a8f1860258ce9d9",
  4765. "message": "fix: 修改mysql url\n",
  4766. "committer_name": "zhaoxingrui",
  4767. "committer_email": "171250598@smail.nju.edu.cn",
  4768. "projectId": 794
  4769. },
  4770. {
  4771. "id": "b77d6e5ec29637a50669e5382ded119080545751",
  4772. "message": "fix: 修改yml文件\n",
  4773. "committer_name": "zhaoxingrui",
  4774. "committer_email": "171250598@smail.nju.edu.cn",
  4775. "projectId": 794
  4776. },
  4777. {
  4778. "id": "2d2c5449baf780229f7dca330f2458693bb2a183",
  4779. "message": "fix: 填入bug\n",
  4780. "committer_name": "zhaoxingrui",
  4781. "committer_email": "171250598@smail.nju.edu.cn",
  4782. "projectId": 794
  4783. },
  4784. {
  4785. "id": "0b38153170ce5df35272574414e773f3f067116d",
  4786. "message": "已在application.yml中进行修改\n",
  4787. "committer_name": "201250109",
  4788. "committer_email": "201250109@smail.nju.edu.cn",
  4789. "projectId": 794
  4790. },
  4791. {
  4792. "id": "ad137df3e2465a25ddcdaa869a76d55c3ca8ef07",
  4793. "message": "已在application.yml中进行修改\n",
  4794. "committer_name": "201250109",
  4795. "committer_email": "201250109@smail.nju.edu.cn",
  4796. "projectId": 794
  4797. },
  4798. {
  4799. "id": "dc8db0adc29234dc3f5304445481e30f15a601fe",
  4800. "message": "改动了update中传入的参数\n",
  4801. "committer_name": "201250109",
  4802. "committer_email": "201250109@smail.nju.edu.cn",
  4803. "projectId": 794
  4804. },
  4805. {
  4806. "id": "0d16aa94a31b8aa90a1e0223b442e25e9a399955",
  4807. "message": "新部署了密码为root的数据库\n",
  4808. "committer_name": "201250109",
  4809. "committer_email": "201250109@smail.nju.edu.cn",
  4810. "projectId": 794
  4811. }
  4812. ],
  4813. "44": [
  4814. {
  4815. "id": "78b1d37663f0b5c2a2050e962554a51f50280b22",
  4816. "message": "init\n",
  4817. "committer_name": "ExApricity",
  4818. "committer_email": "2923512364@qq.com",
  4819. "projectId": 759
  4820. },
  4821. {
  4822. "id": "9faed58b5f770c384dd1d61c8349036e71a4133d",
  4823. "message": "\"change yml file: 修改了服务器配置文件\"\n",
  4824. "committer_name": "ExApricity",
  4825. "committer_email": "2923512364@qq.com",
  4826. "projectId": 759
  4827. },
  4828. {
  4829. "id": "71aea3aa536f2b0472aaecfed826d83635a1b506",
  4830. "message": "init\n",
  4831. "committer_name": "ExApricity",
  4832. "committer_email": "2923512364@qq.com",
  4833. "projectId": 758
  4834. }
  4835. ],
  4836. "45": [
  4837. {
  4838. "id": "2fa8f4803df5bfcc7c9b06a3e50dc801f46a298c",
  4839. "message": "init: 项目初始化\n",
  4840. "committer_name": "wbl",
  4841. "committer_email": "1214345406@qq.com",
  4842. "projectId": 820
  4843. },
  4844. {
  4845. "id": "c90d682e6443207ea303e3391d4ca1c1bd256c1b",
  4846. "message": "后端项目初始化\n",
  4847. "committer_name": "Geek-Kevin2333",
  4848. "committer_email": "q1835894540@163.com",
  4849. "projectId": 820
  4850. },
  4851. {
  4852. "id": "15938a383b08023ce08f2ddd869a4679f654efd4",
  4853. "message": "init\n",
  4854. "committer_name": "Geek-Kevin2333",
  4855. "committer_email": "q1835894540@163.com",
  4856. "projectId": 820
  4857. },
  4858. {
  4859. "id": "a2402d6d1a14c9ce8ac18c7d77894f68e48394ba",
  4860. "message": "feat: complete #820#\n",
  4861. "committer_name": "Geek-Kevin2333",
  4862. "committer_email": "q1835894540@163.com",
  4863. "projectId": 820
  4864. },
  4865. {
  4866. "id": "8cd073fe118117bdd727dbf1a50b273c0e9e079e",
  4867. "message": "feat: complete #2593#\n",
  4868. "committer_name": "Geek-Kevin2333",
  4869. "committer_email": "q1835894540@163.com",
  4870. "projectId": 820
  4871. },
  4872. {
  4873. "id": "d42e8c5b320107b3e0651373cb65a1069967bc6a",
  4874. "message": "feat:complete #2720#,添加todo项完成\n",
  4875. "committer_name": "201250170",
  4876. "committer_email": "1223174272@qq.com",
  4877. "projectId": 820
  4878. },
  4879. {
  4880. "id": "d485278519a79958ce7dd765b711a98bc76a304f",
  4881. "message": "deploy backend by Peng\n",
  4882. "committer_name": "Peng Junzhi",
  4883. "committer_email": "201250214@smail.nju.edu.cn",
  4884. "projectId": 820
  4885. },
  4886. {
  4887. "id": "e2e645eb1a3f6ce6ca2e441ec9df8ff2c1665987",
  4888. "message": "depoly backend by Peng\n",
  4889. "committer_name": "Peng Junzhi",
  4890. "committer_email": "201250214@smail.nju.edu.cn",
  4891. "projectId": 820
  4892. },
  4893. {
  4894. "id": "8558432b485a2c4788e6df69473311f26a64b061",
  4895. "message": "feat: complete #225#, 后端bug修复\n",
  4896. "committer_name": "Peng Junzhi",
  4897. "committer_email": "201250214@smail.nju.edu.cn",
  4898. "projectId": 820
  4899. },
  4900. {
  4901. "id": "b82ce03178bac7e5bd06d618c44c99ca9b0f1ee8",
  4902. "message": "feat: complete #2721#, 后端bug修复\n",
  4903. "committer_name": "Peng Junzhi",
  4904. "committer_email": "201250214@smail.nju.edu.cn",
  4905. "projectId": 820
  4906. },
  4907. {
  4908. "id": "62c69c82e07203eaad7cf5f42992252f49076519",
  4909. "message": "fix: fix #91#, 提交空title的bug已解决\n",
  4910. "committer_name": "Peng Junzhi",
  4911. "committer_email": "201250214@smail.nju.edu.cn",
  4912. "projectId": 820
  4913. },
  4914. {
  4915. "id": "3028fa516720be4fb526e170c9ba1547408ef36f",
  4916. "message": "fix: fix #225#, 提交空title的bug已解决\n",
  4917. "committer_name": "Peng Junzhi",
  4918. "committer_email": "201250214@smail.nju.edu.cn",
  4919. "projectId": 820
  4920. },
  4921. {
  4922. "id": "165e03649b4424a0c029979a9b34658c6933d830",
  4923. "message": "feat:complete #2593#,完成获取任务列表\n",
  4924. "committer_name": "wbl",
  4925. "committer_email": "1214345406@qq.com",
  4926. "projectId": 820
  4927. },
  4928. {
  4929. "id": "931bfa67e991669c033e8e4bcad28af4c3064574",
  4930. "message": "feat:complete #2722#,完成更新任务状态\n",
  4931. "committer_name": "wbl",
  4932. "committer_email": "1214345406@qq.com",
  4933. "projectId": 820
  4934. },
  4935. {
  4936. "id": "e30729b6fec1d6e82fa3e01dfd19972de070e945",
  4937. "message": "fix: fix #224#, 无法更新todo项状态的bug已解决\n",
  4938. "committer_name": "Geek-Kevin2333",
  4939. "committer_email": "q1835894540@163.com",
  4940. "projectId": 820
  4941. },
  4942. {
  4943. "id": "e4a1266a03482f8ce2d5c37810e04c0a757c981a",
  4944. "message": "init: 项目初始化\n",
  4945. "committer_name": "wbl",
  4946. "committer_email": "1214345406@qq.com",
  4947. "projectId": 819
  4948. },
  4949. {
  4950. "id": "76ee75247ff8dba7028631f7c2471c1beef60910",
  4951. "message": "feat: complete #820#\n",
  4952. "committer_name": "Geek-Kevin2333",
  4953. "committer_email": "q1835894540@163.com",
  4954. "projectId": 819
  4955. },
  4956. {
  4957. "id": "d3b8e865ec8196393037da9a0d6533684282eba6",
  4958. "message": "feat: working on #2723#,在前端页面添加成员信息表格完成\n",
  4959. "committer_name": "201250170",
  4960. "committer_email": "1223174272@qq.com",
  4961. "projectId": 819
  4962. },
  4963. {
  4964. "id": "4facd66c39d4acf3e89ed0da8fd0958379377c0e",
  4965. "message": "Merge branch 'master' of http://seecoder-gitlab-gitlab.seec.seecoder.cn/201250147/todo-list-frontend\n",
  4966. "committer_name": "201250170",
  4967. "committer_email": "1223174272@qq.com",
  4968. "projectId": 819
  4969. },
  4970. {
  4971. "id": "a7be4295a8f38da19289553932b81302887760d0",
  4972. "message": "change the node\n",
  4973. "committer_name": "201250170",
  4974. "committer_email": "1223174272@qq.com",
  4975. "projectId": 819
  4976. },
  4977. {
  4978. "id": "19e52b52e5b36e14b093488c199a828f630ca638",
  4979. "message": "feat :修复部署失败问题\n",
  4980. "committer_name": "wbl",
  4981. "committer_email": "1214345406@qq.com",
  4982. "projectId": 819
  4983. },
  4984. {
  4985. "id": "2bef0b5aeec2aa33e01b020daa2e2ad2de02f487",
  4986. "message": "delete package-lock.json\n",
  4987. "committer_name": "wbl",
  4988. "committer_email": "1214345406@qq.com",
  4989. "projectId": 819
  4990. },
  4991. {
  4992. "id": "afae728a2451f430ba347a3e06c2478bbf1442c6",
  4993. "message": "feat: delete yarn.lock\n",
  4994. "committer_name": "zhaoxingrui",
  4995. "committer_email": "171250598@smail.nju.edu.cn",
  4996. "projectId": 819
  4997. },
  4998. {
  4999. "id": "234a90a1c7cbff5d7bd907b8a6b6d73a66ef74a2",
  5000. "message": "修改title为空时的提示\n",
  5001. "committer_name": "wbl",
  5002. "committer_email": "1214345406@qq.com",
  5003. "projectId": 819
  5004. },
  5005. {
  5006. "id": "72bbe5e0767f9e615f2d4a1abadf6beac74d88c2",
  5007. "message": "Merge branch 'master' of http://seecoder-gitlab-gitlab.seec.seecoder.cn/201250147/todo-list-frontend\n",
  5008. "committer_name": "wbl",
  5009. "committer_email": "1214345406@qq.com",
  5010. "projectId": 819
  5011. }
  5012. ],
  5013. "46": [
  5014. {
  5015. "id": "7fcc0cae5531f804b64dc8ca5670bdcf2adf284a",
  5016. "message": "init:前端项目初始化\n",
  5017. "committer_name": "zhangtongke",
  5018. "committer_email": "201250032@smail.nju.edu.cn",
  5019. "projectId": 774
  5020. },
  5021. {
  5022. "id": "f2584a9442b152fc27f2bdfa48ada3d1072d4ca6",
  5023. "message": "init:项目初始化\n",
  5024. "committer_name": "zhangtongke",
  5025. "committer_email": "201250032@smail.nju.edu.cn",
  5026. "projectId": 773
  5027. },
  5028. {
  5029. "id": "6f960bb1fdbac0edfc534cbd0daff88ae0e7bd5e",
  5030. "message": "init:后端项目初始化\n",
  5031. "committer_name": "zhangtongke",
  5032. "committer_email": "201250032@smail.nju.edu.cn",
  5033. "projectId": 773
  5034. },
  5035. {
  5036. "id": "5fa501071042e6951d748f711943da0723c8f643",
  5037. "message": "mysql配置\n",
  5038. "committer_name": "zhangtongke",
  5039. "committer_email": "201250032@smail.nju.edu.cn",
  5040. "projectId": 773
  5041. },
  5042. {
  5043. "id": "14ad566a9eaf3cc936ca4d4b9b12e3df513ecc01",
  5044. "message": "mysql配置\n",
  5045. "committer_name": "zhangtongke",
  5046. "committer_email": "201250032@smail.nju.edu.cn",
  5047. "projectId": 773
  5048. }
  5049. ],
  5050. "47": [
  5051. {
  5052. "id": "4691a3aa4879006bc55c37a64936070e80df3098",
  5053. "message": "init the project\n",
  5054. "committer_name": "Sky",
  5055. "committer_email": "wangxingyunwxy@qq.com",
  5056. "projectId": 463
  5057. },
  5058. {
  5059. "id": "4eb8e36c3148fa527ea8c8ba6013469983231cc8",
  5060. "message": "try to change haeder.vue\n",
  5061. "committer_name": "LostPromise0710",
  5062. "committer_email": "sonder0710@gmail.com",
  5063. "projectId": 463
  5064. },
  5065. {
  5066. "id": "3b51aab300a1ae47b65282a77ded805c5eb303a0",
  5067. "message": "upd by yty\n",
  5068. "committer_name": "HareXX",
  5069. "committer_email": "2260122782@qq.com",
  5070. "projectId": 463
  5071. },
  5072. {
  5073. "id": "2172583ff4e2ddb15fb5303b27021a56ee256d69",
  5074. "message": "Merge remote-tracking branch 'origin/master'\n\n# Conflicts:\n#\tsrc/components/Header.vue\n#\tyarn.lock\n",
  5075. "committer_name": "HareXX",
  5076. "committer_email": "2260122782@qq.com",
  5077. "projectId": 463
  5078. },
  5079. {
  5080. "id": "9d6b2dc1e80d73c747176393fe5085919d6070dd",
  5081. "message": "upd by yty\n",
  5082. "committer_name": "HareXX",
  5083. "committer_email": "2260122782@qq.com",
  5084. "projectId": 463
  5085. },
  5086. {
  5087. "id": "bee919c727995cdc16020dc2dad12981ed1e0932",
  5088. "message": "upd by yty\n",
  5089. "committer_name": "HareXX",
  5090. "committer_email": "2260122782@qq.com",
  5091. "projectId": 463
  5092. },
  5093. {
  5094. "id": "7d37d604d50ed56c5530bf32dbd8917f531af6ea",
  5095. "message": "upd by yty\n",
  5096. "committer_name": "HareXX",
  5097. "committer_email": "2260122782@qq.com",
  5098. "projectId": 463
  5099. },
  5100. {
  5101. "id": "56cc9fe0ef40d1193787fb5cdf8a20702ebd14f4",
  5102. "message": "upd by yty\n",
  5103. "committer_name": "HareXX",
  5104. "committer_email": "2260122782@qq.com",
  5105. "projectId": 463
  5106. },
  5107. {
  5108. "id": "59f2a0ddd0db029bfc88eb2e748f9997f79deefa",
  5109. "message": "upd by yty\n",
  5110. "committer_name": "HareXX",
  5111. "committer_email": "2260122782@qq.com",
  5112. "projectId": 463
  5113. },
  5114. {
  5115. "id": "7bf1ea030721a481af2854df36b351afa35e4ff2",
  5116. "message": "add table under todolist\n",
  5117. "committer_name": "LostPromise0710",
  5118. "committer_email": "sonder0710@gmail.com",
  5119. "projectId": 463
  5120. },
  5121. {
  5122. "id": "c064269ea353e1634dfcd64f19f6dc8186e4afc6",
  5123. "message": "wtf eslint!\n",
  5124. "committer_name": "LostPromise0710",
  5125. "committer_email": "sonder0710@gmail.com",
  5126. "projectId": 463
  5127. },
  5128. {
  5129. "id": "14ab67541f230f3e8e9ec1d8f63b2c6193781113",
  5130. "message": "init the project\n",
  5131. "committer_name": "Sky",
  5132. "committer_email": "wangxingyunwxy@qq.com",
  5133. "projectId": 462
  5134. },
  5135. {
  5136. "id": "a25d6fb3ea55148754ea197754388958d6a81a46",
  5137. "message": "init mysql connect\n",
  5138. "committer_name": "Sky",
  5139. "committer_email": "wangxingyunwxy@qq.com",
  5140. "projectId": 462
  5141. },
  5142. {
  5143. "id": "872b8940cd5cdaa4013617759cf15adba8ba5509",
  5144. "message": "init mysql connect\n",
  5145. "committer_name": "Sky",
  5146. "committer_email": "wangxingyunwxy@qq.com",
  5147. "projectId": 462
  5148. },
  5149. {
  5150. "id": "584e815a432f3db59454d6c67c04c8a287e85efc",
  5151. "message": "Stanton JY\n",
  5152. "committer_name": "Morgan",
  5153. "committer_email": "1377060711@qq.com",
  5154. "projectId": 462
  5155. },
  5156. {
  5157. "id": "cd52d959973080ff67145b0d7c411e107a3f7936",
  5158. "message": "本地test通过\n",
  5159. "committer_name": "Sky",
  5160. "committer_email": "wangxingyunwxy@qq.com",
  5161. "projectId": 462
  5162. },
  5163. {
  5164. "id": "8af9d4e1abb8fa082bbd3672a6fddd60336270cc",
  5165. "message": "final\n",
  5166. "committer_name": "201250044",
  5167. "committer_email": "wangxingyunwxy@qq.com",
  5168. "projectId": 462
  5169. },
  5170. {
  5171. "id": "efe9076a3c9ff64a8da535530214d3416188d855",
  5172. "message": "Merge remote-tracking branch 'origin/master'\n\n# Conflicts:\n#\tsrc/main/resources/application.yml\n",
  5173. "committer_name": "201250044",
  5174. "committer_email": "wangxingyunwxy@qq.com",
  5175. "projectId": 462
  5176. }
  5177. ],
  5178. "48": [
  5179. {
  5180. "id": "e626be55e043cc70c34323c9746197522e6d398c",
  5181. "message": "init: 项目初始化\n",
  5182. "committer_name": "chenjiefei",
  5183. "committer_email": "1154147493@qq.com",
  5184. "projectId": 890
  5185. },
  5186. {
  5187. "id": "30e6f7aa0a9232f097d91add8501ddde30e8483c",
  5188. "message": "second commit for test1\n",
  5189. "committer_name": "chenjiefei",
  5190. "committer_email": "1154147493@qq.com",
  5191. "projectId": 890
  5192. },
  5193. {
  5194. "id": "6b3661f40c504e34a14b71ab47e9f7464d721001",
  5195. "message": "third commit for test1\n",
  5196. "committer_name": "chenjiefei",
  5197. "committer_email": "1154147493@qq.com",
  5198. "projectId": 890
  5199. },
  5200. {
  5201. "id": "081b94f419218d304c637d53131a912833761cc2",
  5202. "message": "121323\n",
  5203. "committer_name": "realyoume",
  5204. "committer_email": "realyoume@foxmail.com",
  5205. "projectId": 890
  5206. },
  5207. {
  5208. "id": "6795055b27cb46e35840695ab5ca473c4e9e991a",
  5209. "message": "1958\n",
  5210. "committer_name": "realyoume",
  5211. "committer_email": "realyoume@foxmail.com",
  5212. "projectId": 890
  5213. },
  5214. {
  5215. "id": "7ab67759e192aa25e6f159f9ce1a842fc312177b",
  5216. "message": "1959\n",
  5217. "committer_name": "realyoume",
  5218. "committer_email": "realyoume@foxmail.com",
  5219. "projectId": 890
  5220. },
  5221. {
  5222. "id": "ccd24436bcc3c028be5e6e6f56b020bca9ff8309",
  5223. "message": "2002\n",
  5224. "committer_name": "realyoume",
  5225. "committer_email": "realyoume@foxmail.com",
  5226. "projectId": 890
  5227. },
  5228. {
  5229. "id": "a53fed8df14bd8d39e6c9a0cfb14874a9793365f",
  5230. "message": "2006\n",
  5231. "committer_name": "realyoume",
  5232. "committer_email": "realyoume@foxmail.com",
  5233. "projectId": 890
  5234. },
  5235. {
  5236. "id": "35016de5e4f588373d34add1005b462998705af1",
  5237. "message": "init: 项目初始化\n",
  5238. "committer_name": "chenjiefei",
  5239. "committer_email": "1154147493@qq.com",
  5240. "projectId": 880
  5241. },
  5242. {
  5243. "id": "24d9d5b2731416c30af47daecb93d52552bc3ff3",
  5244. "message": "first push\n",
  5245. "committer_name": "chenjiefei",
  5246. "committer_email": "1154147493@qq.com",
  5247. "projectId": 880
  5248. },
  5249. {
  5250. "id": "7f2301d83ec2ca2dfc3e341c8dff4fe4d24ab397",
  5251. "message": "second push\n",
  5252. "committer_name": "chenjiefei",
  5253. "committer_email": "1154147493@qq.com",
  5254. "projectId": 880
  5255. }
  5256. ],
  5257. "49": [
  5258. {
  5259. "id": "0aa2a57e8c2b9d00aaa6268418c06aac2f78e593",
  5260. "message": "a\n",
  5261. "committer_name": "201250079",
  5262. "committer_email": "996600wxc",
  5263. "projectId": 842
  5264. },
  5265. {
  5266. "id": "aa9b9af663a1761531a72f32fb67ddd98b878257",
  5267. "message": "b\n",
  5268. "committer_name": "201250079",
  5269. "committer_email": "996600wxc",
  5270. "projectId": 842
  5271. },
  5272. {
  5273. "id": "16e3c6fb9e5cea2723396cecb155a5fa6cf5874c",
  5274. "message": "a\n",
  5275. "committer_name": "201250079",
  5276. "committer_email": "996600wxc",
  5277. "projectId": 841
  5278. },
  5279. {
  5280. "id": "57661b010ed47acd6722fbf13f5884d7220250a0",
  5281. "message": "1\n",
  5282. "committer_name": "201250079",
  5283. "committer_email": "996600wxc",
  5284. "projectId": 320
  5285. },
  5286. {
  5287. "id": "a67326a5be6511d10da631c2a4b30b89c156b9a3",
  5288. "message": "2\n",
  5289. "committer_name": "201250079",
  5290. "committer_email": "996600wxc",
  5291. "projectId": 320
  5292. },
  5293. {
  5294. "id": "03e53a90692cf303c6ae52f958e70f6cb9e695c7",
  5295. "message": "3\n",
  5296. "committer_name": "201250079",
  5297. "committer_email": "996600wxc",
  5298. "projectId": 320
  5299. },
  5300. {
  5301. "id": "737e66a7508a12446ae1ee296267b7d7754a2358",
  5302. "message": "1\n",
  5303. "committer_name": "201250079",
  5304. "committer_email": "996600wxc",
  5305. "projectId": 319
  5306. }
  5307. ],
  5308. "50": [
  5309. {
  5310. "id": "567aea734765e4bff075d2a4c298e21436cf0289",
  5311. "message": "项目初始化\n",
  5312. "committer_name": "201250152",
  5313. "committer_email": "2875544698@qq.com",
  5314. "projectId": 906
  5315. },
  5316. {
  5317. "id": "a11e728d2e64b826c4ad2946faf69908b7bb288e",
  5318. "message": "repairbug2-1\n",
  5319. "committer_name": "Xiaoxu Liu",
  5320. "committer_email": "201250123@smail.nju.edu.cn",
  5321. "projectId": 906
  5322. },
  5323. {
  5324. "id": "7b164ce5227f5ce4cd0879f4040b6421f8f632c4",
  5325. "message": "addpeo\n",
  5326. "committer_name": "Xiaoxu Liu",
  5327. "committer_email": "201250123@smail.nju.edu.cn",
  5328. "projectId": 906
  5329. },
  5330. {
  5331. "id": "a27e0548a6d3be135a9e960795fe7c45fb33a3f5",
  5332. "message": "3\n",
  5333. "committer_name": "Xiaoxu Liu",
  5334. "committer_email": "201250123@smail.nju.edu.cn",
  5335. "projectId": 906
  5336. },
  5337. {
  5338. "id": "535ea4691c8f1bddfd9a02312afca49ee844387f",
  5339. "message": "项目初始化,后端用的jpa数据库\n",
  5340. "committer_name": "201250152",
  5341. "committer_email": "2875544698@qq.com",
  5342. "projectId": 905
  5343. },
  5344. {
  5345. "id": "fb9728a9cf83ed986dcaeffecccaf4d90cdaead5",
  5346. "message": "后端bug初修改\n",
  5347. "committer_name": "wangxiao",
  5348. "committer_email": "1574019603@qq.com",
  5349. "projectId": 905
  5350. },
  5351. {
  5352. "id": "96716608de4f360220c828a149b6cbe567513c6f",
  5353. "message": "后端bug初修改\n",
  5354. "committer_name": "wangxiao",
  5355. "committer_email": "1574019603@qq.com",
  5356. "projectId": 905
  5357. },
  5358. {
  5359. "id": "9e02294d217dd74ddf93cb6ab1dbb98fe836bdbe",
  5360. "message": "数据库配置变更\n",
  5361. "committer_name": "VohsiLiu",
  5362. "committer_email": "alan.turing.von.neumann@gmail.com",
  5363. "projectId": 905
  5364. }
  5365. ],
  5366. "51": [
  5367. {
  5368. "id": "1048a1378e382dd07173608f7af09148934f6bc0",
  5369. "message": "pom.xml\n",
  5370. "committer_name": "201250225",
  5371. "committer_email": "1761242557@qq.com",
  5372. "projectId": 861
  5373. },
  5374. {
  5375. "id": "c7227b3084181cdee1b8f2cf16425600b04b1391",
  5376. "message": "pom.xml\n",
  5377. "committer_name": "201250225",
  5378. "committer_email": "1761242557@qq.com",
  5379. "projectId": 861
  5380. },
  5381. {
  5382. "id": "8285b7a1519121905d2e229cc8e79b62a6d91827",
  5383. "message": "fix: fixing on #159#,点击更新无变化的bug\n",
  5384. "committer_name": "201250225",
  5385. "committer_email": "1761242557@qq.com",
  5386. "projectId": 861
  5387. },
  5388. {
  5389. "id": "87a205332a3b06258839fa43c9d212c93c809ecc",
  5390. "message": "fix: fixing on #159#,点击更新无变化的bug\n",
  5391. "committer_name": "201250225",
  5392. "committer_email": "1761242557@qq.com",
  5393. "projectId": 861
  5394. },
  5395. {
  5396. "id": "d7ac59c80f28b5821ea05b1e3334eb0d913554b3",
  5397. "message": "fix: fixing on #159#,点击更新无变化的bug\n",
  5398. "committer_name": "201250225",
  5399. "committer_email": "1761242557@qq.com",
  5400. "projectId": 861
  5401. },
  5402. {
  5403. "id": "fa62fe43d5f36c1595522db08d9f3c6a85660114",
  5404. "message": "Serviceupdate.java\n",
  5405. "committer_name": "201250225",
  5406. "committer_email": "1761242557@qq.com",
  5407. "projectId": 861
  5408. },
  5409. {
  5410. "id": "3bab0a66cdddcd0184701eebfcdc34fc4063b116",
  5411. "message": "fix #159#,预计无法更新状态的bug已修复\n",
  5412. "committer_name": "201250225",
  5413. "committer_email": "1761242557@qq.com",
  5414. "projectId": 861
  5415. },
  5416. {
  5417. "id": "b2bae42ad0422c40d09cfde1705721944658ffe4",
  5418. "message": "fix: fix #159#,预计无法更新状态的bug已修复\n",
  5419. "committer_name": "201250225",
  5420. "committer_email": "1761242557@qq.com",
  5421. "projectId": 861
  5422. },
  5423. {
  5424. "id": "c0ef588f5ce778f5195fcb6e9755aab33cf12017",
  5425. "message": "Serviceupdate.java\n",
  5426. "committer_name": "201250225",
  5427. "committer_email": "1761242557@qq.com",
  5428. "projectId": 861
  5429. },
  5430. {
  5431. "id": "6e79bd3b2ad049ed3c655f206ce9633521138cdd",
  5432. "message": "Serviceupdate.java\n",
  5433. "committer_name": "201250225",
  5434. "committer_email": "1761242557@qq.com",
  5435. "projectId": 861
  5436. },
  5437. {
  5438. "id": "83b336d595968190adc21f943e92caaae48060c5",
  5439. "message": "Serviceupdate.java\n",
  5440. "committer_name": "201250225",
  5441. "committer_email": "1761242557@qq.com",
  5442. "projectId": 861
  5443. },
  5444. {
  5445. "id": "355a5e2af68f720f9f5297170043d9ffa898bbb7",
  5446. "message": "Serviceupdate.java\n",
  5447. "committer_name": "201250225",
  5448. "committer_email": "1761242557@qq.com",
  5449. "projectId": 861
  5450. },
  5451. {
  5452. "id": "4db9472eb4b87c1cbd64ab745eeb908ba37d0043",
  5453. "message": "Serviceupdate.java\n",
  5454. "committer_name": "201250225",
  5455. "committer_email": "1761242557@qq.com",
  5456. "projectId": 861
  5457. },
  5458. {
  5459. "id": "6a5785a5abf83467dba39c98dff49f293036a736",
  5460. "message": "Serviceupdate.java\n",
  5461. "committer_name": "201250225",
  5462. "committer_email": "1761242557@qq.com",
  5463. "projectId": 861
  5464. },
  5465. {
  5466. "id": "9eb500715969537a986c3c0c11ad22ddcf04c0bc",
  5467. "message": "Serviceupdate.java\n",
  5468. "committer_name": "201250225",
  5469. "committer_email": "1761242557@qq.com",
  5470. "projectId": 861
  5471. },
  5472. {
  5473. "id": "212356acd7399d7f7e7a226c4479a638cfba2fa7",
  5474. "message": "Serviceupdate.java\n",
  5475. "committer_name": "201250225",
  5476. "committer_email": "1761242557@qq.com",
  5477. "projectId": 861
  5478. },
  5479. {
  5480. "id": "6804daa158c6e3c29bfc8970e3b6c36cbecdce28",
  5481. "message": "Serviceupdate.java\n",
  5482. "committer_name": "201250225",
  5483. "committer_email": "1761242557@qq.com",
  5484. "projectId": 861
  5485. },
  5486. {
  5487. "id": "46823b27227eaad85994036b17fb1afa391963cd",
  5488. "message": "Serviceupdate.java\n",
  5489. "committer_name": "201250225",
  5490. "committer_email": "1761242557@qq.com",
  5491. "projectId": 861
  5492. },
  5493. {
  5494. "id": "2953519344fb599f862cd1c9f79cf7f05cf33756",
  5495. "message": "fix: fix #159#,状态无法更改的bug已修复\n",
  5496. "committer_name": "201250225",
  5497. "committer_email": "1761242557@qq.com",
  5498. "projectId": 861
  5499. },
  5500. {
  5501. "id": "4d08d1c490bd705f102c6efd351b805254fbd079",
  5502. "message": "fix: fix #165#,状态无法更改的bug已修复\n",
  5503. "committer_name": "201250225",
  5504. "committer_email": "1761242557@qq.com",
  5505. "projectId": 861
  5506. },
  5507. {
  5508. "id": "1a88ece82ea708dbb3afe740137892802972cbb9",
  5509. "message": "init: 项目初始化\n",
  5510. "committer_name": "Franxx",
  5511. "committer_email": "2062774934@qq.com",
  5512. "projectId": 860
  5513. },
  5514. {
  5515. "id": "22e5910c045f6470d2e856d203c6231a27f75230",
  5516. "message": "完成不允许提交空title的todo\n",
  5517. "committer_name": "Franxx",
  5518. "committer_email": "2062774934@qq.com",
  5519. "projectId": 860
  5520. },
  5521. {
  5522. "id": "59a060341c20488888997b37bb46abe359a25a5e",
  5523. "message": "修正不允许提交空title的todo\n",
  5524. "committer_name": "Franxx",
  5525. "committer_email": "2062774934@qq.com",
  5526. "projectId": 860
  5527. },
  5528. {
  5529. "id": "0a7ba76e0d06cc004f90ca2848daac088e9d5d97",
  5530. "message": "fix: fixing on #166#修复允许提交空title的bug\n",
  5531. "committer_name": "Franxx",
  5532. "committer_email": "2062774934@qq.com",
  5533. "projectId": 860
  5534. },
  5535. {
  5536. "id": "c316baecc12fd986d7ad75e1253cefd286856b1d",
  5537. "message": "feat: complete #2562#添加成员信息\n",
  5538. "committer_name": "Franxx",
  5539. "committer_email": "2062774934@qq.com",
  5540. "projectId": 860
  5541. }
  5542. ],
  5543. "52": [
  5544. {
  5545. "id": "b7cdbdf49ade5c8f67be84858aca8b7a0c3a7004",
  5546. "message": "init: initial\n",
  5547. "committer_name": "mrspool",
  5548. "committer_email": "1500187071@qq.com",
  5549. "projectId": 882
  5550. },
  5551. {
  5552. "id": "cf62e3d1108f4674424f84fb20723d3a47984075",
  5553. "message": "init:initial\n",
  5554. "committer_name": "201250106",
  5555. "committer_email": "201250106@smail.nju.edu.cn",
  5556. "projectId": 881
  5557. },
  5558. {
  5559. "id": "5b54e88ad50f55d25620d5326cb7de33f053315c",
  5560. "message": "1\n",
  5561. "committer_name": "mrspool",
  5562. "committer_email": "1500187071@qq.com",
  5563. "projectId": 881
  5564. }
  5565. ],
  5566. "53": [
  5567. {
  5568. "id": "7a11fc22f95223546daec52cfa6916f306f80d17",
  5569. "message": "init: 项目初始化\n",
  5570. "committer_name": "于金甲",
  5571. "committer_email": "2668523393@qq.com",
  5572. "projectId": 858
  5573. },
  5574. {
  5575. "id": "c5b6a3795ea69e6a0b40c66398034df48eb9af6d",
  5576. "message": "init: 项目初始化\n",
  5577. "committer_name": "于金甲",
  5578. "committer_email": "2668523393@qq.com",
  5579. "projectId": 857
  5580. },
  5581. {
  5582. "id": "7c5b6bffb68e5f581d4d8c8d80f45c46e2fcbb92",
  5583. "message": "config: 更新数据库配置\n",
  5584. "committer_name": "于金甲",
  5585. "committer_email": "2668523393@qq.com",
  5586. "projectId": 857
  5587. },
  5588. {
  5589. "id": "f845ff57e12569105cd915630d741dcc5a9dc99f",
  5590. "message": "first commit\n",
  5591. "committer_name": "Liu Xinyu",
  5592. "committer_email": "1051253512@qq.com",
  5593. "projectId": 857
  5594. }
  5595. ]
  5596. }